A system of vectors:v1,...,vn∈RmAnd a system of scalars:c1,...,cn∈RCan combine to create one unique vector:c1v1+...+cnvnExample:2⎣⎡−101⎦⎤+1⎣⎡010⎦⎤−3⎣⎡011⎦⎤=⎣⎡−202⎦⎤+⎣⎡010⎦⎤⎣⎡0−3−3⎦⎤=⎣⎡−2−2−1⎦⎤
Vector Equations
What if, instead of specific numbers, we replaced the values of vectors/scalars with variables?
Variables are denoted as such: x1,x2,...,xnVectors are denoted as such: v1,v2,...,vn,b∈Rm where b represents constants.The corresponding vector equation would be: x1v1+x2v2+...+xnvn=bExample: x⎣⎡−101⎦⎤+y⎣⎡010⎦⎤+z⎣⎡011⎦⎤=⎣⎡−2−2−1⎦⎤has a solution of x = 2, y = 1, z = -3 as shown above.We can also rewrite this as ⎣⎡−xy+zx+z⎦⎤=⎣⎡−2−2−1⎦⎤ using vector addition.
Solving Vector Equations
We can rewrite a vector equation into an augmented matrix where each of the columns are represented by the vectors.v1,v2,...,vn,b∈Rm(v1v2...vnb)
For example,
x⎣⎡−101⎦⎤+y⎣⎡010⎦⎤+z⎣⎡011⎦⎤=⎣⎡−2−2−1⎦⎤can be converted into⎝⎛−101010011−2−2−1⎠⎞→⎝⎛10−1010110−1−2−2⎠⎞→⎝⎛100010111−1−2−3⎠⎞→⎝⎛10001000121−3⎠⎞
The Span of a System of Linear Equations
Let some vectors be defined as v1,v2,...,vn∈RmSpan{v1,v2,...,vn}=The set of all combinations in the form c1v1+...+cnvn=The set of all b such that c1v1+...+cnvn=b is consistent (has a solution).Examples: This span represents a single line: x = 1Span{[10]}⊂R2=Set of t[10]=[t0]This span represents a single line: x = y Span{[11]}⊂R2=Set of t[11]This span represents the entire x, y planeSpan{[10],[11]}Proof:Let any point on the x, y plane be represented by the vector (xy)(xy)=(x0)+(0y)=x(10)+y(01)=x(10)+y[(11)−(10)]=(x−y)(10)+y(11)Therefore, any point (x,y) can be rewritten as a combination of vectors defined by the span.Intuitively, this proof shows that you can "adjust x" according to your y value to get any point on the plane.
The span of n vectors does NOT have to necessarily span n dimensions; if there is redundant/not enough information, the span can cover fewer dimensions. Also, spans might not be unique; muiltple combinations of vectors can have the same span.
Two vectors that inhabit the same line are said to be colinear. That is, if two vectors are a scalar multiple of one another, then they are colinear.
Span{v1,v2} will either be a line if colinear or a plane if not.