Linearly Dependent

Basis
Last updated: Tags: Linear Algebra

Prerequisites

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 v1,,vkVv_1, \ldots, v_k \in V over a field FF is any expression of the form

c1v1+c2v2++ckvk,c1,,ckF.c_1 v_1 + c_2 v_2 + \cdots + c_k v_k, \qquad c_1, \ldots, c_k \in F.

The scalars c1,,ckc_1, \ldots, c_k 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 {v1,,vk}V\{v_1, \ldots, v_k\} \subseteq V is linearly dependent if there exist scalars c1,,ckFc_1, \ldots, c_k \in F, 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 ci0c_i \ne 0 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 c1=c2==ck=0c_1 = c_2 = \cdots = c_k = 0. 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 \emptyset is linearly independent by convention.

Connection to homogeneous linear systems

Form the matrix A=[v1v2vk]A = [v_1 \mid v_2 \mid \cdots \mid v_k] whose columns are the vectors (written as column vectors in some basis). Then the equation (1) is exactly the homogeneous system Ax=0Ax = \mathbf{0} where x=(c1,,ck)x = (c_1, \ldots, c_k)^\top.

This gives a direct computational criterion:

{v1,,vk} is linearly dependent    Ax=0 has a nontrivial solution    RREF(A) has at least one free column.\{v_1, \ldots, v_k\} \text{ is linearly dependent} \iff Ax = \mathbf{0} \text{ has a nontrivial solution} \iff \text{RREF}(A) \text{ has at least one free column}.

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 R2\mathbb{R}^2:

  • 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 R2\mathbb{R}^2.

In R3\mathbb{R}^3:

  • 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 R3\mathbb{R}^3 — they point in three genuinely different directions.

Special cases

Any set containing 0\mathbf{0} is linearly dependent. If v1=0v_1 = \mathbf{0}, take c1=1c_1 = 1 and all other coefficients zero: 10+0v2++0vk=01 \cdot \mathbf{0} + 0 \cdot v_2 + \cdots + 0 \cdot v_k = \mathbf{0}. This is a nontrivial relation. Intuitively, the zero vector carries no directional information.

A single nonzero vector is always linearly independent. The equation c1v1=0c_1 v_1 = \mathbf{0} with v10v_1 \ne \mathbf{0} forces c1=0c_1 = 0 in any field.

More vectors than the dimension of the space. If you have more than dimV\dim V vectors in VV, 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 c1v1++ckvkc_1 v_1 + \cdots + c_k v_k with arbitrary scalar coefficients.
  • {v1,,vk}\{v_1, \ldots, v_k\} is linearly dependent if a nontrivial linear combination equals 0\mathbf{0}; it is linearly independent if only the trivial combination equals 0\mathbf{0}.
  • Dependence is equivalent to the homogeneous system Ax=0Ax = \mathbf{0} (with columns viv_i) having a nontrivial solution, which happens exactly when the RREF of AA has a free column.
  • Geometrically: dependent vectors are collinear (in R2\mathbb{R}^2) or coplanar (in R3\mathbb{R}^3).
  • Any set containing 0\mathbf{0} is dependent; a single nonzero vector is always independent.