How do I test for linear independence if there are only 3 equations in R4?

skyturnred
Messages
117
Reaction score
0

Homework Statement



So the dimension is R4. V1=[3 1 1 2], V2=[-2 -1 2 2] and V3=[2 1 2 1]

Homework Equations





The Attempt at a Solution



The only way I know of to test for convergence is to make a matrix out of the row vectors of the vectors above (with the row vectors becoming the respective columns of the matrix) and to take the determinant. If det=0 then it is linearly dependent.

The problem here, is that you get the following matrix: [3 -2 2; 1 -1 1; 1 2 2; 2 2 1] which, since it is 4x3, is not possible to find the determinant.

Are there other ways to test for dependence?
 
Physics news on Phys.org
You could try using the definition of linear dependence. It will give you four equations and three variables... solve for the variables using the first three equations and see if you can satisfy the fourth still
 
Think about trying to solve aV1+bV2+cV3=0

Basically the same idea, what do a, b, and c have to be for V1, V2, and V3 to be linearly independent?
 
Oh, I see. So then I write out the equations, put them into a matrix. I get the following.

M=[3 -2 2 0; 1 -1 1 0; 1 2 2 0; 2 2 1 0].

Brought to rref I get:

M=[1 0 0 0; 0 1 0 0; 0 0 1 0; 0 0 0 0]. So then, since there is only a trivial solution, that means that they are all linear independent right? Just trying to make sure I understand.
Thanks
 
skyturnred said:
Oh, I see. So then I write out the equations, put them into a matrix. I get the following.

M=[3 -2 2 0; 1 -1 1 0; 1 2 2 0; 2 2 1 0].

Brought to rref I get:

M=[1 0 0 0; 0 1 0 0; 0 0 1 0; 0 0 0 0]. So then, since there is only a trivial solution, that means that they are all linear independent right? Just trying to make sure I understand.
Thanks
assuming you did it correctly, than that shows that the vectors are linearly independent
 
ironman1478 said:
assuming you did it correctly, than that shows that the vectors are linearly independent

Thanks!
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top