Lesson 1.4907 words

Linear Independence

A set of vectors is linearly independent when the only linear combination equal to zero is the trivial one; otherwise a dependence relation writes one vector in terms of the others. For the columns of A the question becomes whether Ax = 0 has only the trivial solution — a pivot in every column.

╌╌╌╌

A solution set written as a span uses one spanning vector per free variable. Whether that spanning set is as small as possible, or carries a redundant vector that some combination of the others already reaches, is the question of linear independence. Like the questions before it, it reduces to counting pivots in a homogeneous system.

The definition

Independence is a property of a set of vectors, phrased through the homogeneous vector equation they generate.

The trivial solution always exists; independence says it is the only one. Dependence says there is a genuine one, a way to combine the vectors to zero without using all-zero weights.

Testing by row reduction

Because the test is whether a homogeneous vector equation has a nontrivial solution, it is a row reduction.

The augmented column of zeros never changes under row operations, so in practice one reduces alone.

An independent set produces a pivot in every column.

Independence as a condition on a parameter

Many problems ask for the values of an unknown entry that make a set dependent. The dependence appears exactly when the reduction produces a free variable. Take

Here already, so is dependent, and adding any keeps the set dependent for every value of : a dependence relation among the first two, padded with weight on , still has a nonzero weight. No value of the parameter can make an already-dependent set independent.

When the first vectors are independent, the parameter can matter. For

row reduction leaves a bottom-row pivot in column 3 unless takes one specific value that zeros it; at that value becomes free and the set turns dependent. The parameter is fixed by demanding the third pivot vanish.

Small cases by inspection

For one or two vectors, no computation is needed.

  • One vector. is independent if and only if . The equation forces exactly when is nonzero.
  • Two vectors. is dependent if and only if one is a scalar multiple of the other. Geometrically, dependent means the two lie on a common line through the origin.
Two vectors: independent when they point along different lines through 0 (left); dependent when one is a scalar multiple of the other (right).

Dependence means one vector is redundant

The name dependent is justified by rewriting a dependence relation.

If is a combination of the others, move it across: is a dependence relation with nonzero weight . Conversely, given a dependence relation, let be the largest index with ; then solves for in terms of the earlier vectors.1

This connects independence back to span. If are independent in , they span a plane, and a third vector makes dependent exactly when lies in that plane.

With u, v independent, {u, v, w} is dependent iff w lies in the plane they span (left) and independent iff w points out of it (right).

Two automatic dependences

Some sets are dependent for structural reasons, without any reduction.

The matrix is , so has equations in unknowns; with more columns than rows, some column has no pivot, hence a free variable, hence a nontrivial solution.

If , the relation has a nonzero weight.

In R^n a set can be independent only while p <= n; once p exceeds n, dependence is forced by the too-many-vectors theorem.

For example, three vectors in are always dependent (there are more vectors than entries), even when no one of them is a multiple of another — the dependence involves all three at once.

Any third vector in R^2 is a combination of two independent ones, so three vectors in the plane are always dependent even with no two parallel.

Pivot criteria

Independence, span, and the shape of solution sets all read off the pivot pattern. Collecting the criteria for the columns of an matrix :

Property of the columns of Pivot conditionRequires
Linearly independenta pivot in every column pivots ()
Span a pivot in every row pivots ()
Both (independent and spanning)a pivot in every row and column pivots

Independence caps the number of vectors at ; spanning requires at least . A set that does both must have exactly vectors — the defining condition of a basis.

Footnotes

  1. Lay, Linear Algebra and Its Applications, §1.7 — Linear Independence: the definition via the homogeneous equation, the characterization of a dependent set as one whose vectors include a combination of the others, and the theorems that vectors in or any set containing is dependent.

╌╌ END ╌╌