Posted by Neeraj on Thursday, August 11, 2011 at 7:59am.
Three vectors are linearly independent if the determinant formed by the vectors (in columns) is non-zero.
So for u=(1,-1,-1), v=(a,b,c), w=(d,e,f)
There are many possible choices of v and w such that the determinant
1 a d
-1 b e
-1 c f
is non-zero.
The simplest way is to create a triangular matrix such that the diagonal is all non-zero, or
1 0 0
-1 b 0
-1 c f
where b and f are non-zero, and the determinant evaluates to b*f≠0.
Example: (b=-1,c=1,f=1)
(1,-1,-1),(0,-1,1),(0,0,1) are linearly independent because the determinant
1 0 0
-1 -1 0
-1 1 1
evaluates to 1*(-1)*(-1)=-1 ≠ 0
Note:
vectors that are orthogonal to each other are linearly independent, since each cannot be a linear combination of the others.
However, linear independent vectors need not be orthogonal. Therefore their dot products need not be zero.
Related Questions
linear algebra - which of the following sets of vectors span R^3? a.){(1, -1, 2...
Calculus - Name two sets of vectors that could be used to span a set in R^3. ...
college Algebra/Linear Algebra - Find a Basis for each of these substances of R^...
Math - Algebraic Vectors - Given the vectors: u = [3, 0] v = [-1, 2] a) Express ...
math - given that vectors(p+2q) and (5p-4q) are orthogonal,if vectors p and q ...
math - given that vectors(p+2q) and (5p-4q) are orthogonal,if vectors p and q ...
Physics Vectors - two vectors A and B have magnitude such that A>B. We do...
math - two vectors are defined as a=2i+xj and b=i-4j. find value of x if a) the ...
math - two vectors are defined as a=2i+xj and b=i-4j. find value of x if a) the ...
vectors - Determine whether each statement is true or false. Provide a brief ...
For Further Reading