Thread Closed

how to determine if a set of vectors span a space

 
Share Thread Thread Tools
Apr3-10, 04:18 PM   #1
 

how to determine if a set of vectors span a space


1. The problem statement, all variables and given/known data

How to determine if a set of vectors span a space in general?
say, V=R^n and you're given a few vectors and asked to determine if they span the space..
how do you do that?

2. Relevant equations



3. The attempt at a solution
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Galaxies fed by funnels of fuel
>> The better to see you with: Scientists build record-setting metamaterial flat lens
>> Google eyes emerging markets networks
Apr3-10, 04:21 PM   #2
 
Mentor
Quote by mathmathmad View Post
1. The problem statement, all variables and given/known data

How to determine if a set of vectors span a space in general?
say, V=R^n and you're given a few vectors and asked to determine if they span the space..
how do you do that?
A set S of vectors spans V iff every vector in V can be written as a linear combination of vectors in S.

Just to make this a little less abstract, suppose V = R3, and that S = {<1, 0, 1>, <0, 2, 5>}. Does this set of vectors span V?
Apr3-10, 04:32 PM   #3
 
I'm not quite sure with my way of finding the answer, which is NO i.e. do not span

would it be okay if you show me your working based on this example? :)
Apr3-10, 04:45 PM   #4
 
Mentor

how to determine if a set of vectors span a space


You tell me why you think this set doesn't span R3.
Apr3-10, 04:52 PM   #5
 
erm, I wrote it as augmented matrix

1 0 | 1 0 0
0 2 | 0 1 0
1 5 | 0 0 1

and start to reduce it to "reduced row echelon form" (that's why I started another thread before this asking about RRE form because I'm unsure how this works)

and on the 3rd row, i get 0 0 | 0 1/2 1/5 (inconsistent, so do not span?)

:( I'm looking for another way of determining the spanning set
this is what I get from google-ing O_O
Apr3-10, 07:22 PM   #6
 
Mentor
There's a much simpler way to answer the question, that can be done with no computation. Answer the following questions and it will be obvious to you.

What's the dimension of R3 (i.e., dim(R3))?
How many vectors does it take to span R3?
How many vectors are there in S?
Does S span R3?

Going back to the work you did, you have a lot of extra stuff that doesn't make any sense to me. A given set of vectors spans R3 if any vector in R3 is some linear combination of the vectors in the set. IOW, for any vector <x, y, z>, there is a solution for the constants a and b in this equation:
a<1, 0, 1> + b<0, 2, 5> = <x, y, z>

Setting this up as an augmented matrix gives you this:

1 0 | x
0 2 | y
1 5 | z

After row reduction, I get j
1 0 | x
0 1 | y/2
0 0 | z-x -5y/2

The first two rows say that a = x and b = y/2, but the bottom row says that 0a + 0b = z - x - 5y/2. This last equation is saying that the system of equations has a solution only if z - x -5y/2 = 0. IOW, for some vectors <x, y, z> there is no solution.
Thread Closed
Thread Tools


Similar Threads for: how to determine if a set of vectors span a space
Thread Forum Replies
span of vectors Calculus & Beyond Homework 2
How many vectors in span({v}) Calculus & Beyond Homework 6
How to test if vectors span a space? Calculus & Beyond Homework 6
span of a set of 3D vectors Calculus & Beyond Homework 1
span of vectors Linear & Abstract Algebra 6