Intuition The one-line idea
A set of vectors is linearly independent if no vector in the set can be built from the others . Each vector adds a genuinely new direction. If even one vector is redundant (a combination of the rest), the set is dependent .
Intuition Why this concept exists
When we describe a space using a list of vectors, we want no waste . A dependent set has a "passenger" — a vector carrying no new information. Independence guarantees:
The vectors form an honest basis (minimal spanning set).
Coordinates are unique (only one way to write each vector).
Matrices built from them are invertible / full rank .
So independence is the gatekeeper for "is this a clean coordinate system?"
Definition Linear independence
Vectors v 1 , … , v n \mathbf{v}_1,\dots,\mathbf{v}_n v 1 , … , v n in a vector space are linearly independent if the only scalars solving
c 1 v 1 + c 2 v 2 + ⋯ + c n v n = 0 c_1\mathbf{v}_1 + c_2\mathbf{v}_2 + \dots + c_n\mathbf{v}_n = \mathbf{0} c 1 v 1 + c 2 v 2 + ⋯ + c n v n = 0
are = = c 1 = c 2 = ⋯ = c n = 0 = = ==c_1=c_2=\dots=c_n=0== == c 1 = c 2 = ⋯ = c n = 0 == (the trivial solution).
If there exists a solution with at least one c i ≠ 0 c_i \neq 0 c i = 0 , the set is linearly dependent .
= 0 =\mathbf 0 = 0 only trivially" captures the idea
Suppose a nontrivial combination gives 0 \mathbf 0 0 , say c 1 ≠ 0 c_1\neq 0 c 1 = 0 . Then we can solve:
v 1 = − c 2 c 1 v 2 − ⋯ − c n c 1 v n . \mathbf{v}_1 = -\frac{c_2}{c_1}\mathbf{v}_2 - \dots - \frac{c_n}{c_1}\mathbf{v}_n. v 1 = − c 1 c 2 v 2 − ⋯ − c 1 c n v n .
So v 1 \mathbf v_1 v 1 is a combination of the others — redundant! The "only trivial solution" condition is exactly the algebraic way of saying no vector is redundant .
The definition is a homogeneous linear system . Stack the vectors as columns of a matrix A A A :
A = [ ∣ ∣ ∣ v 1 v 2 ⋯ v n ∣ ∣ ∣ ] , A c = 0. A = \begin{bmatrix} | & | & & | \\ \mathbf v_1 & \mathbf v_2 & \cdots & \mathbf v_n \\ | & | & & | \end{bmatrix}, \qquad A\mathbf c = \mathbf 0. A = ∣ v 1 ∣ ∣ v 2 ∣ ⋯ ∣ v n ∣ , A c = 0 .
This is true because A c = c 1 v 1 + ⋯ + c n v n A\mathbf c = c_1\mathbf v_1+\dots+c_n\mathbf v_n A c = c 1 v 1 + ⋯ + c n v n (matrix–vector product is a linear combination of columns).
Worked example Example 1 — square, use determinant
Are v 1 = ( 1 , 2 ) , v 2 = ( 3 , 4 ) \mathbf v_1=(1,2),\ \mathbf v_2=(3,4) v 1 = ( 1 , 2 ) , v 2 = ( 3 , 4 ) independent in R 2 \mathbb R^2 R 2 ?
A = [ 1 3 2 4 ] , det A = 1 ⋅ 4 − 3 ⋅ 2 = − 2 ≠ 0. A=\begin{bmatrix}1&3\\2&4\end{bmatrix},\quad \det A = 1\cdot4 - 3\cdot2 = -2 \neq 0. A = [ 1 2 3 4 ] , det A = 1 ⋅ 4 − 3 ⋅ 2 = − 2 = 0.
Independent.
Why determinant? Two vectors in R 2 \mathbb R^2 R 2 : det = 0 \det=0 det = 0 would mean they're parallel (one is a scalar multiple). det ≠ 0 ⇒ \det\neq0\Rightarrow det = 0 ⇒ they span a full 2D area.
Worked example Example 2 — spotting dependence by inspection
a = ( 1 , 1 , 1 ) , b = ( 2 , 2 , 2 ) , c = ( 0 , 1 , 3 ) \mathbf a=(1,1,1),\ \mathbf b=(2,2,2),\ \mathbf c=(0,1,3) a = ( 1 , 1 , 1 ) , b = ( 2 , 2 , 2 ) , c = ( 0 , 1 , 3 ) .
Notice b = 2 a \mathbf b = 2\mathbf a b = 2 a , so 2 a − b + 0 c = 0 2\mathbf a - \mathbf b + 0\mathbf c = \mathbf 0 2 a − b + 0 c = 0 — a nontrivial combo.
Dependent.
Why this step? We don't always need row reduction; a visible scalar multiple is already a nontrivial dependency.
Worked example Example 3 — row reduce to be sure
v 1 = ( 1 , 0 , 2 ) , v 2 = ( 0 , 1 , 1 ) , v 3 = ( 1 , 1 , 3 ) \mathbf v_1=(1,0,2),\ \mathbf v_2=(0,1,1),\ \mathbf v_3=(1,1,3) v 1 = ( 1 , 0 , 2 ) , v 2 = ( 0 , 1 , 1 ) , v 3 = ( 1 , 1 , 3 ) .
A = [ 1 0 1 0 1 1 2 1 3 ] → R 3 − 2 R 1 [ 1 0 1 0 1 1 0 1 1 ] → R 3 − R 2 [ 1 0 1 0 1 1 0 0 0 ] . A=\begin{bmatrix}1&0&1\\0&1&1\\2&1&3\end{bmatrix}\xrightarrow{R_3-2R_1}\begin{bmatrix}1&0&1\\0&1&1\\0&1&1\end{bmatrix}\xrightarrow{R_3-R_2}\begin{bmatrix}1&0&1\\0&1&1\\0&0&0\end{bmatrix}. A = 1 0 2 0 1 1 1 1 3 R 3 − 2 R 1 1 0 0 0 1 1 1 1 1 R 3 − R 2 1 0 0 0 1 0 1 1 0 .
Only 2 pivots for 3 columns ⇒ \Rightarrow ⇒ a free variable ⇒ \Rightarrow ⇒ Dependent .
Why this step? A zero row means rank = 2 < 3 \operatorname{rank}=2<3 rank = 2 < 3 , so A c = 0 A\mathbf c=\mathbf 0 A c = 0 has nontrivial solutions. Indeed v 3 = v 1 + v 2 \mathbf v_3=\mathbf v_1+\mathbf v_2 v 3 = v 1 + v 2 .
Worked example Example 4 — too many vectors
Four vectors in R 3 \mathbb R^3 R 3 are automatically dependent : A A A is 3 × 4 3\times4 3 × 4 , rank ≤ 3 < 4 \le 3 < 4 ≤ 3 < 4 , so a free variable always exists.
Why this step? You can't have more independent directions than the dimension of the space.
Recall Predict before you compute
Before testing, forecast : count vectors vs. dimension; scan for obvious multiples or sums.
Forecast: "( 1 , 2 , 3 ) , ( 2 , 4 , 6 ) (1,2,3),(2,4,6) ( 1 , 2 , 3 ) , ( 2 , 4 , 6 ) — second is 2 × 2\times 2 × first → I predict DEPENDENT."
Verify: det \det det of the parallel pair / row reduce → zero row. ✓ Matches.
Common mistake "Their sum/combination isn't zero, so they're independent."
Why it feels right: independence "feels" like the vectors point different ways, and you eyeballed that none equals another.
The fix: Independence is about whether any nontrivial combo gives 0 \mathbf 0 0 , not whether one specific sum does. Always solve A c = 0 A\mathbf c=\mathbf 0 A c = 0 fully (row reduce). ( 1 , 1 ) , ( 2 , 3 ) , ( 3 , 4 ) (1,1),(2,3),(3,4) ( 1 , 1 ) , ( 2 , 3 ) , ( 3 , 4 ) look distinct but are dependent — 3 vectors in R 2 \mathbb R^2 R 2 .
Common mistake "I'll use the determinant" — but
A A A is not square.
Why it feels right: determinant is the go-to dependence test.
The fix: det \det det only exists for square matrices (n n n vectors in R n \mathbb R^n R n ). For non-square, use rank / row reduction .
Common mistake Confusing the
zero vector case.
Why it feels right: "0 \mathbf 0 0 is just one harmless vector."
The fix: Any set containing 0 \mathbf 0 0 is dependent , since 1 ⋅ 0 + 0 ⋅ ( rest ) = 0 1\cdot\mathbf 0 + 0\cdot(\text{rest})=\mathbf 0 1 ⋅ 0 + 0 ⋅ ( rest ) = 0 is nontrivial (c 1 = 1 ≠ 0 c_1=1\neq0 c 1 = 1 = 0 ).
Recall Feynman: explain to a 12-year-old
Imagine giving directions: "go East, go North." Two useful, different instructions. Now add "go Northeast." That third one is useless — you could already reach Northeast by combining East + North. A list of directions is independent when every instruction lets you reach somewhere the others couldn't. The moment one is a leftover combo of the others, it's dependent — you've got a passenger doing nothing.
Mnemonic Remember the test
"Zero only the boring way."
If c 1 v 1 + ⋯ = 0 c_1\mathbf v_1+\dots=\mathbf 0 c 1 v 1 + ⋯ = 0 only when all c i = 0 c_i=0 c i = 0 (the boring/trivial way) → independent . Any exciting (nonzero) way to hit zero → dependent .
And: R ows reduce, count P ivots: Pivots = #vectors → indePendent .
Define linear independence of v 1 , … , v n \mathbf v_1,\dots,\mathbf v_n v 1 , … , v n . Only
c 1 = ⋯ = c n = 0 c_1=\dots=c_n=0 c 1 = ⋯ = c n = 0 solves
c 1 v 1 + ⋯ + c n v n = 0 c_1\mathbf v_1+\dots+c_n\mathbf v_n=\mathbf 0 c 1 v 1 + ⋯ + c n v n = 0 .
What does a nontrivial solution to A c = 0 A\mathbf c=\mathbf 0 A c = 0 mean? The columns of
A A A are linearly
dependent .
Rank condition for independence of n n n columns? rank ( A ) = n \operatorname{rank}(A)=n rank ( A ) = n (a pivot in every column, no free variables).
Determinant test — when valid and what it says? Only for square
A A A ; independent
⟺ det A ≠ 0 \iff \det A\neq 0 ⟺ det A = 0 .
Are 4 vectors in R 3 \mathbb R^3 R 3 independent? Never — more vectors than the dimension forces a free variable.
Is a set containing 0 \mathbf 0 0 independent? No, always dependent:
1 ⋅ 0 = 0 1\cdot\mathbf 0=\mathbf 0 1 ⋅ 0 = 0 is nontrivial.
If v 3 = v 1 + v 2 \mathbf v_3=\mathbf v_1+\mathbf v_2 v 3 = v 1 + v 2 , dependent or independent? Dependent —
v 1 + v 2 − v 3 = 0 \mathbf v_1+\mathbf v_2-\mathbf v_3=\mathbf 0 v 1 + v 2 − v 3 = 0 is nontrivial.
Why does "only trivial solution" mean no redundant vector? A nontrivial
c i ≠ 0 c_i\neq0 c i = 0 lets you solve
v i \mathbf v_i v i as a combo of the rest.
Span and spanning sets — independence + spanning = basis .
Basis and dimension — a basis is a maximal independent set.
Rank of a matrix — rank = number of independent columns/rows.
Determinant — zero determinant ⇔ dependent columns (square case).
Homogeneous systems and null space — nontrivial null space ⇔ dependence.
Invertible matrix theorem — independent columns ⇔ invertible.
Only trivial solution c=0
More vectors than dimension
Intuition Hinglish mein samjho
Dekho, linear independence ka matlab simple hai: vectors ka ek group lo, aur poochho — kya koi ek vector baaki vectors ko mila ke banaya ja sakta hai? Agar haan, to woh vector redundant (faltu) hai aur set dependent hai. Agar koi bhi vector baaki se nahi ban sakta, to har vector ek nayi direction de raha hai — yeh independent set hai.
Formal definition yeh hai: agar c 1 v 1 + ⋯ + c n v n = 0 c_1\mathbf v_1+\dots+c_n\mathbf v_n=\mathbf 0 c 1 v 1 + ⋯ + c n v n = 0 sirf tab hota hai jab saare c i = 0 c_i=0 c i = 0 (boring/trivial solution), tabhi independent. Agar koi c i c_i c i nonzero rakh ke bhi zero mil jaaye, to dependent. Isko test karne ka tareeka: vectors ko ek matrix A A A ke columns banao, aur A c = 0 A\mathbf c=\mathbf 0 A c = 0 solve karo. Row reduce karo aur pivots count karo — agar pivots = number of vectors, to independent. Square case mein shortcut: det A ≠ 0 \det A\neq 0 det A = 0 to independent.
Do common galtiyan: (1) Non-square matrix pe determinant lagana — galat, determinant sirf square ke liye. (2) "Inka sum zero nahi aa raha to independent" — nahi bhai, kisi bhi nontrivial combo ko check karna padta hai, full row reduction karo. Aur yaad rakho: agar zero vector set mein hai, to set hamesha dependent hota hai.
Yeh concept important kyun hai? Kyunki basis banane ke liye, unique coordinates ke liye, aur matrix invertible hai ya nahi — sab kuch independence pe depend karta hai. Forecast pehle karo: vectors zyada hain dimension se? To pakka dependent. Koi vector dusre ka multiple dikh raha? To dependent. Phir verify karo row reduction se.