A set of vectors spans if they can be expressed as linear combinations. Say we have a set of vectors we can call S in some vector space we can call V. The subspace, we can call W, that consists of all linear combinations of the vectors in S is called the
spanning space and we say the vectors span W.
Here is an example of vectors in R^3.
Say we have
V1=(1,1,2), v2=(1,0,1), v3=(2,1,3)
We want to see if they span or not.
We have to find whether an arbitrary vector, say,
b=(b1,b2,b3) can be expressed as a linear combo
b=k1v1+k2v2+k3v3 of the vectors
v1,v2,v3.
Set up a system of equations in terms of the components:
(b1,b2,b3)=k1(1,1,2)+k2(1,0,1)+k3(2,1,3)
(b1,b2,b3)=(k1+k2+2k3, k1+k3, 2k1+k2+3k3)
k1+k2+2k3=b1
k1 +k3=b2
2k1+k2+3k3=b3
The system is consistent for all
b1,b2,b3 iff the matrix of coefficients:
A=⎣⎢⎡112101213⎦⎥⎤
has a determinant that is not equal to 0.
But this determinant does equal 0, so it DOES NOT span.