Linearly Dependent Vectors — Definition, Formula & Examples
Linearly dependent vectors are vectors where at least one can be written as a combination of the others. In other words, there is a nontrivial way to combine them using scalar multipliers so that the result is the zero vector.
A set of vectors in a vector space is linearly dependent if there exist scalars , not all zero, such that .
Key Formula
Where:
- = The vectors being tested for dependence
- = Scalar coefficients, at least one of which is nonzero
- = The zero vector
How It Works
To test whether a set of vectors is linearly dependent, form a matrix with the vectors as columns and row-reduce it. If there is a column without a pivot (i.e., a free variable exists), the vectors are linearly dependent. Equivalently, if the determinant of the square matrix formed by the vectors equals zero, the vectors are linearly dependent. A quick shortcut: any set of vectors in containing more than vectors is automatically linearly dependent.
Worked Example
Problem: Determine whether the vectors v₁ = (1, 2, 3), v₂ = (4, 5, 6), and v₃ = (5, 7, 9) are linearly dependent.
Step 1: Form the matrix with these vectors as columns and compute its determinant.
Step 2: Expand the determinant along the first row.
Step 3: Since the determinant is zero, the vectors are linearly dependent. You can verify: v₁ + v₂ − v₃ = (0, 0, 0), so c₁ = 1, c₂ = 1, c₃ = −1 is a nontrivial solution.
Answer: The vectors are linearly dependent because det(A) = 0, and specifically v₃ = v₁ + v₂.
Why It Matters
Identifying linear dependence is central to finding bases, computing rank, and solving systems of equations in linear algebra courses. In applied settings like computer graphics and data science, dependent vectors signal redundant information, which affects dimensionality reduction techniques like PCA.
Common Mistakes
Mistake: Concluding that vectors are linearly independent just because no single vector is a scalar multiple of another.
Correction: Linear dependence can involve combinations of multiple vectors. For instance, v₃ = v₁ + v₂ makes the set dependent even though no pair is proportional. Always check the full system, not just pairwise relationships.
