Analyzing Linear Combinations: v1, v2 and v3

pyroknife
Messages
611
Reaction score
4
Lets say you have 3 vectors v1, v2,v3. They form a 3x3 matrix.

Let's say you're asked if v3 is a linear combo of the other two vectors.

Rref of the matrix gives
1 0 1
0 1 0
0 0 0

The definition of a Linear combo is v3=c1v1+c2v2 where c1 and c2 are scalars.

Okay do this is where I get con fused . If u look at the above matrix c2=0 which means v3=c1v1. Would that mean its not a linear combination of v2 since c2=0?

Also is 0 a scalar?
 
Physics news on Phys.org
pyroknife said:
Okay do this is where I get con fused . If u look at the above matrix c2=0 which means v3=c1v1. Would that mean its not a linear combination of v2 since c2=0?

Also is 0 a scalar?
It IS a linear combination. c2 = 0 is allowed. 0 is a scalar.
 
pyroknife said:
Lets say you have 3 vectors v1, v2,v3. They form a 3x3 matrix.

Let's say you're asked if v3 is a linear combo of the other two vectors.

Rref of the matrix gives
1 0 1
0 1 0
0 0 0
Assuming this is an augmented matrix, you have c1 = 1 and c2 = 0.
pyroknife said:
The definition of a Linear combo is v3=c1v1+c2v2 where c1 and c2 are scalars.

Okay do this is where I get con fused . If u look at the above matrix c2=0 which means v3=c1v1. Would that mean its not a linear combination of v2 since c2=0?
No, v3 is a linear combination of v1 and v2; namely, v3 = 1v1 + 0v2.
pyroknife said:
Also is 0 a scalar?
Yes, unless you're talking about a 0 vector, which in this case would be <0, 0, 0>.
 
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