Independence is the property of 'no redundancy' — no vector in the set is expressible from the others. It is the condition that makes coordinates unique, which is why bases require it.
What you must be able to do
{v1,…,vn} is independent iff c1v1+⋯+cnvn=0 forces all ci=0.
For n vectors in Rn: independent ⟺det(X)=0, where X has them as columns.
For k vectors in Rm with k=m: row reduce X and look for free variables. Any k>m is automatically dependent.
Independence ⟺ every vector in the span has a unique representation (Thm 3.3.3).
Definition · Linear dependence / independence
The vectors v1,…,vn are linearly dependent if there exist scalars c1,…,cn, not all zero, with c1v1+⋯+cnvn=0. If the only such combination is the trivial one, they are linearly independent.
Geometry in R2/R3
Two vectors are dependent iff they lie on the same line through the origin. Three vectors in R3 are dependent iff they lie in a common plane through the origin.
Instant dependence
Any set containing 0 is dependent (take c=1 on the zero vector). Any set of more than dimV vectors is dependent.
Theorem 3.3.1 · The square case
Let x1,…,xn∈Rn and let X=(x1,…,xn). The vectors are linearly dependent if and only if X is singular, i.e. det(X)=0.
Because c1x1+⋯+cnxn=0 is exactly Xc=0, and a nontrivial solution exists iff X is singular.
!Exam trap
The determinant test needs the matrix to be square — exactly n vectors in Rn. For 3 vectors in R4 or 5 vectors in R3 there is no determinant to take: row reduce and count pivots instead.
Testing a set for linear independence
0
Count first
k vectors in a space of dimension d. If k>d, they are automatically dependent — stop.
1
Build the matrix X with the vectors as columns
The question is always whether Xc=0 has a nontrivial solution.
2
Is X square?
yesCompute det(X). Nonzero ⟹ independent; zero ⟹ dependent.
noRow reduce X to echelon form.
3
Count pivots r against the number of vectors k
r = kIndependent — no free variables, so only c=0.
r < kDependent — free variables give a nontrivial relation.
4
If dependent and you need the actual relation, finish to reduced form
Set a free variable to 1 and read the other coefficients off — that gives an explicit dependency.
fn
Functions instead of vectors?
In Pn, equate coefficients of like powers. In C(n−1)[a,b], use the Wronskian: if W(x0)=0 for some x0, they're independent.
Worked example
Dependent — and finding the relation
0/4 steps
Are v1=(1,−1,2)T, v2=(2,1,1)T, v3=(4,−1,5)T linearly independent? If not, exhibit a dependency.
Theorem 3.3.3 · Uniqueness of representation
v1,…,vn span V and are linearly independent iff every v∈V has a unique representation v=c1v1+⋯+cnvn.
This is the real reason bases require independence: without it, 'coordinates' would be ambiguous, and §3.5 would collapse.