2.912 min read
Linear Dependence
A set of vectors is linearly dependent if one of them can be written as a linear combination of the others — it's "redundant." More precisely: the equation has a nontrivial solution (not all ).
A set is linearly independent if the only solution to is the trivial one: . No vector in the set is redundant.
Geometrically: two vectors are dependent iff they are parallel (point in the same or opposite direction). Three vectors in are dependent iff they are coplanar. Dependence = geometric redundancy.
Formal View
Definition 2.9 — Linear Independence
Vectors are linearly independent if
They are linearly dependent if a nontrivial solution exists (some ).
Interactive Visualization
Linear Dependence Explorer
Why This Matters
Linear independence is the mathematical formalization of "no redundancy" — every vector adds new information.
- Independent sensors: each sensor measurement adds new information about the state
- Data science: linearly dependent features are redundant and should be removed
- A basis must be linearly independent — any redundancy wastes parameters
Quiz
Question 1
The vectors and are linearly independent.
Question 2
A set of vectors that includes the zero vector is:
Common Mistakes
- Testing dependence only by checking if one vector is a multiple of another — three or more vectors can be dependent without any being a multiple of another.
- Confusing "zero vector" with "zero coefficients" — a set containing the zero vector is always dependent.