Linearly Dependent
BasisPrerequisites
If you have a collection of vectors, how do you know whether any of them is “redundant” — expressible as a combination of the others? Linear dependence gives you the precise language to answer this question, and it turns out the answer is always equivalent to solving a homogeneous linear system.
Linear combinations
A linear combination of vectors over a field is any expression of the form
The scalars are called the coefficients of the combination. Linear combinations are the building blocks of everything in linear algebra — every span, every subspace, every matrix-vector product is ultimately a linear combination in disguise.
Linear dependence and independence
The set is linearly dependent if there exist scalars , not all zero, such that
c_1 v_1 + c_2 v_2 + \cdots + c_k v_k = \mathbf{0}. \tag{1}
Equation (1) with at least one is called a nontrivial linear relation among the vectors.
Conversely, the set is linearly independent if the only solution to (1) is the trivial relation . Equivalently, no vector in the set can be written as a linear combination of the others — each one carries genuinely new information.
The empty set is linearly independent by convention.
Connection to homogeneous linear systems
Form the matrix whose columns are the vectors (written as column vectors in some basis). Then the equation (1) is exactly the homogeneous system where .
This gives a direct computational criterion:
To check whether a set of vectors is linearly independent, apply Gauss-Jordan elimination to the matrix of columns. If you get a free variable, the set is dependent; if every column is a pivot column, the set is independent.
Geometric intuition
In :
- Two nonzero vectors are linearly dependent if and only if one is a scalar multiple of the other — they are collinear (pointing along the same line through the origin).
- Two vectors are linearly independent if and only if they are not collinear, i.e., they point in genuinely different directions and together span all of .
In :
- Three vectors are linearly dependent if and only if they are all coplanar (they all lie in some common plane through the origin). In this case, one of them is a linear combination of the other two.
- Three vectors are linearly independent if and only if they span all of — they point in three genuinely different directions.
Special cases
Any set containing is linearly dependent. If , take and all other coefficients zero: . This is a nontrivial relation. Intuitively, the zero vector carries no directional information.
A single nonzero vector is always linearly independent. The equation with forces in any field.
More vectors than the dimension of the space. If you have more than vectors in , they are automatically linearly dependent — there are not enough “independent directions” to accommodate all of them.
Why it matters
Linear independence is a prerequisite for the notion of a basis: a linearly independent spanning set. If a spanning set has redundant vectors (i.e., some are linearly dependent on the rest), you can remove those redundant ones without losing any of the span. The minimal spanning sets — and the maximal independent sets — are exactly the bases, which are developed in Linear Subspace.
Summary
- A linear combination is a sum with arbitrary scalar coefficients.
- is linearly dependent if a nontrivial linear combination equals ; it is linearly independent if only the trivial combination equals .
- Dependence is equivalent to the homogeneous system (with columns ) having a nontrivial solution, which happens exactly when the RREF of has a free column.
- Geometrically: dependent vectors are collinear (in ) or coplanar (in ).
- Any set containing is dependent; a single nonzero vector is always independent.