Linear Independence
When no vector in a set can be written as a combination of the others โ the condition that makes a set of vectors non-redundant.
w is dependent
w = 1.0ยทvโ + 0.8ยทvโ
w lies in span(vโ, vโ)
vโ and vโ are independent
Neither is a multiple of the other โ they point in genuinely different directions.
cโ = 1.0
cโ = 0.8
Definition
Vectors are linearly independent if the only solution to
is (the trivial solution).
If a nontrivial solution exists (some ), the vectors are linearly dependent โ at least one can be written as a combination of the others.
Geometric interpretation:
- In : two vectors are independent iff they don't point in the same (or opposite) direction
- In : three vectors are independent iff no one lies in the plane spanned by the other two
Key properties
- The zero vector alone is always linearly dependent โ has nontrivial solutions
- Any subset of a linearly independent set is also linearly independent
- Adding the zero vector, or a duplicate vector, to any set makes it dependent
- A set of more than vectors in is always dependent (pigeonhole on dimension)
Common mistakes
- Checking pairs only: three vectors can each be pairwise "not parallel" yet still be dependent as a set (e.g. one lies in the plane spanned by the other two) โ independence must be checked for the whole set at once
- Confusing independence with orthogonality: independent vectors don't need to be perpendicular โ orthogonality is a stronger, separate condition
Checking dependence
Are , linearly independent?
gives and . The second equation is the first โ infinitely many solutions, e.g. .
Linearly dependent: โ the second is a scalar multiple of the first.
Try it
Are the vectors , , linearly independent?
Solution
This gives and . Choose : then , .
Linearly dependent: . The third vector is the sum of the first two.
Related concepts
Needs first
Related