For vectors :
Linearly Independent Vectors
The vectors are linearly independent if the only solution to
is
Linearly Dependent Vectors
The vectors are linearly dependent if there is a non-zero set of coefficients satisfying
where at least one .
Key Difference Between Linearly Independent and Dependent Vectors
So the key difference is:
For example, and are dependent because
How to Check if 3 Vectors in R3 Are Linearly Independent
If you’re given 3 vectors in R3, there are two common ways to check whether they are linearly independent.
Method 1: Determinant — Fastest Method
Suppose
Put them as columns of a matrix:
Then calculate the determinant:
- If det(A) ≠ 0, the vectors are linearly independent.
- If det(A) = 0, the vectors are linearly dependent.
Method 2: Use the Linear Combination Equation
Start with
Then solve for c1, c2, and c3.
- Only solution: c1 = c2 = c3 = 0 → independent.
- Any non-zero solution → dependent.
Quick Example
Consider the vectors
Matrix:
Therefore,
Conclusion
To determine whether vectors are linearly independent or linearly dependent, you can use the linear combination equation. For 3 vectors in R3, calculating the determinant is often the fastest method: a non-zero determinant means the vectors are linearly independent, while a zero determinant means the vectors are linearly dependent.