Motivation
In chapter 6 we started from span: a list of vectors tells us which vectors can be built by linear combination. The next structural question is whether every vector in that list is genuinely needed.
If one vector is already generated by the others, then the list has redundancy. A redundant list may still span the same space, but it is not minimal. Linear dependence and linear independence provide the exact language for this redundancy question, and they are the bridge to basis and dimension in later sections.
Practical reasons this section matters:
- in solving , dependence explains why free variables appear;
- in modeling, dependence identifies repeated features that do not add new information;
- in theory, dependence is the criterion that separates arbitrary spanning sets from candidate bases.
Read and try
Test one set for dependence
The live checker compares small vector sets and explains whether a nontrivial linear relation exists.
Verdict
Independent
The only way to solve c1e1 + c2e2 = 0 is c1 = c2 = 0, so this pair is linearly independent.
Key relation
No nontrivial linear relation appears.
Definitions
Definition
Linear independence of a finite list
Let be a vector space over a field . A list in is linearly independent if
implies .
Definition
Linear dependence of a finite list
The same list is linearly dependent if there exists a nontrivial choice of scalars (not all zero) with
Definition
Trivial relation and nontrivial relation
The equation with all coefficients zero is the trivial relation. Any other relation is nontrivial. Independence means only the trivial relation exists.
Theorem/Proposition
Theorem
Dependence is equivalent to one vector being generated by the others
For a finite list with , the following are equivalent:
- The list is linearly dependent.
- At least one vector in the list is a linear combination of the remaining vectors.
So a dependent list always contains a removable vector that does not change the span.
Theorem
Row-reduction test for dependence in
Let and build
Then are linearly independent iff the homogeneous system
has only the zero solution. Equivalently, when reducing to RREF, every column must be a pivot column.
Proof sketch or proof idea
Proof
Proof idea for the redundancy criterion
Proof
Proof idea for the row-reduction criterion
Worked examples
Worked example
A dependent list in
Take
Because , we immediately get
which is nontrivial. Hence the list is dependent.
Worked example
Independence test by RREF
Let
Set :
Column 3 is non-pivot, so is free in . Therefore the list is dependent.
Worked example
Why a list containing the zero vector is dependent
Suppose . Then
is already a nontrivial relation (coefficient of is 1). So any list
containing 0 is dependent.
Common mistakes
Common mistake
Confusing dependence with not spanning
Dependent lists can still span a large space. Dependence only says the list is not minimal.
Matrix criterion and pivot criterion
Suppose we place as columns of a matrix
Then a relation
is exactly the same as solving
So linear independence means the homogeneous system has only the trivial solution.
Theorem
Equivalent matrix test for independence
The vectors are linearly independent if and only if the matrix has a pivot in every column (equivalently, no free variable in ).
This gives a complete algorithm.
- Put the vectors into a column matrix .
- Solve the homogeneous system .
- If there is a free variable, choose a nonzero value for it and read a nontrivial relation.
- If every column is a pivot column, only the trivial solution exists and the vectors are independent.
A useful shortcut also falls out immediately: more than m vectors in
must be dependent, because an matrix with cannot have a
pivot in every column.
Worked example
Use row reduction to test independence
Let
Set . Row reduce:
There is a pivot in each column, so the three vectors are linearly independent.
Common mistakes
Common mistake
Forgetting that order does not matter for dependence
Permuting vectors changes their positions but not whether a nontrivial relation exists.
Working checklist
- Independence means uniqueness of the zero-coefficient representation of
0. - Dependence means at least one vector is generated by the others.
- For column vectors, row reduction gives an algorithmic criterion through pivots and free variables.
- This section is the structural prerequisite for basis and dimension.
Warm-up exercises
Quick check
Decide whether (1,0,0),(0,1,0),(1,1,0) in is independent.
Use either the redundancy criterion or the RREF test.
Quick check
Let in . Is independent?
Try to write one vector as a scalar multiple of the other.
Quick check
If is independent, can be independent?
Translate the question into a linear relation.
Warm-up solutions
Solution
Exercise 1
Solution
Exercise 2
Solution
Exercise 3
Quick check
If a set has 5 vectors in , can it be linearly independent?
Use pivots and the number of rows.
Solution
Answer
Exercises
Quick check
Determine whether {(1,0,1),(2,1,3),(0,1,1)} is independent.
Set them as columns, reduce, and read pivot columns.
Solution
Guided solution
Quick check
Show that {(1,2,3),(2,4,6),(1,0,1)} is dependent by writing one vector from others.
Look for a direct scalar-multiple relation first.
Solution
Guided solution
Dependence means redundancy
Theorem
Equivalent redundancy test
A list of vectors is linearly dependent if and only if one vector in the list can be written as a linear combination of the others.
Proof
Why dependence and redundancy are the same
Worked example
A redundant vector can be removed without changing the span
Let
Here . So every vector of the form
can be rewritten as
Therefore
The third vector changes the description, but not the span itself.
Theorem
A redundant vector can be removed without changing the span
If one vector in a list is a linear combination of the others, then deleting it does not change the span of the list.
Proof
Why the span stays the same
Common mistake
Dependent does not mean the span gets smaller
A dependent list can still span a whole space. Dependence only says that at least one vector is unnecessary for generating the span.
Column-matrix criterion and null-space viewpoint
Put the vectors into a matrix
Then the relation
is exactly the homogeneous system , where .
Theorem
Matrix test for dependence
The vectors are linearly independent if and only if the
homogeneous system has only the trivial solution. Equivalently,
the null space N(A) contains only 0.
Proof
Why the homogeneous system controls dependence
Worked example
Read a dependence relation from row reduction
Take
whose columns are , , and . Row reduction gives
The third column is not a pivot column, so is free in . Set . Then the reduced system gives and , so
or equivalently .
Theorem
Pivot criterion
After row reducing , the list is linearly independent if and only if every column is a pivot column. If one column is not a pivot column, then there is a free variable in , so a nontrivial relation exists.
Common mistake
Row reduction is allowed because it preserves the homogeneous solution set
When you row reduce for independence testing, you are not changing the columns themselves into new vectors you want to study. You are simplifying the equation . Row-equivalent matrices have the same homogeneous solutions, so they have the same dependence relations.
Fast low-dimensional tests
Theorem
Two nonzero vectors are independent exactly when neither is a scalar multiple of the other
For a pair {u,v} with both vectors nonzero, the set is linearly independent
if and only if one vector is not a scalar multiple of the other.
Proof
Why two vectors reduce to a scalar-multiple test
Worked example
Two vectors in
Let
Since , the pair is dependent. Geometrically, both vectors point in the same direction.
Worked example
Three vectors in must be dependent
If , then the matrix has size . After row reduction it can have at most two pivots, so one column is not a pivot column. Therefore has a nontrivial solution and the three vectors are linearly dependent.
Worked example
Three vectors in that lie in one plane
If three vectors in all lie in the plane , then they all belong to the span of and . But that plane is already generated by two independent directions, so a third vector cannot add a new independent direction. The list is dependent.
Theorem
Too many vectors in force dependence
Any list of more than m vectors in is linearly dependent.
Proof
Why more than m vectors cannot be independent in
Summary
- Linear dependence can be read directly from the definition, as redundancy in a spanning list, or as a nonzero vector in the null space of a column matrix.
- Row reduction is used to simplify the coefficient equation ; it is not a replacement of the original vectors by new vectors.
- A free variable gives a nontrivial dependence relation, while a pivot in every column proves independence.
- Low-dimensional shortcuts, such as scalar-multiple tests in and the
"more than
mvectors in " rule, are consequences of the same pivot count logic.
Quick checks
Quick check
Is any list containing the zero vector automatically dependent?
Test the definition directly.
Solution
Answer
Quick check
If , does remain independent?
Write the relation in the standard form .
Solution
Answer
Quick check
If a matrix has four pivot columns, what does that say about its columns?
Use the matrix test.
Solution
Answer
Guided exercises
Quick check
Decide whether \{(1,1,0),(0,1,1),(1,2,1)\} is independent, and if not, write one dependence relation.
Set the vectors as columns and look for a free variable after row reduction.
Solution
Guided solution
Quick check
Explain why any subset of a linearly independent set is linearly independent.
Think about what would happen if the subset had its own relation.
Solution
Guided solution
Quick check
If one vector in a list is redundant, what should you try next?
Use the redundancy viewpoint from this page.
Solution
Guided solution
Read this first
This section builds directly on 6.3 Linear combinations and span and the row-reduction workflow in 2.3 Gaussian elimination and RREF.