You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
Most directions get rotated and stretched into completely new directions when you multiply by a matrix — but for almost every matrix there are a few special directions that survive unturned, merely stretched or squashed (and possibly flipped) along their own line. Those directions are the eigenvectors, and the stretch factor along each is the eigenvalue. This is arguably the deepest idea in the matrices course and one of the most powerful in all of mathematics: eigentheory is how we diagonalise matrices (Lesson 9), solve coupled differential equations and recurrence relations, analyse the stability of dynamical systems, run Google's PageRank, and find the natural frequencies of a vibrating structure. The defining relation is disarmingly simple — Av=λv — but unpacking it gives a complete computational procedure (characteristic equation for the λ's; a homogeneous system for the v's) and a rich geometric meaning (eigenvectors are the invariant lines through the origin from Lesson 6). This lesson builds all of it rigorously, with full 2×2 and 3×3 worked examples, the trace/determinant checks, the treatment of complex and repeated eigenvalues, and the exam technique examiners reward.
Eigenvalues and eigenvectors are compulsory pure content for Papers 1 and 2, and they are the gateway to diagonalisation (Lesson 9) and the Cayley–Hamilton theorem (Lesson 10). Forming and solving the characteristic equation is AO1; using the trace/determinant relations as checks, or interpreting an eigenvector as an invariant line, is AO2; and multi-step problems — a 3×3 eigenproblem, a parameter that makes a matrix singular, a proof about eigenvalues of A2 — are AO3. The topic draws directly on solving homogeneous systems (Lesson 5: (A−λI)v=0 has non-trivial solutions exactly when det(A−λI)=0), on determinants (Lesson 3), and on the invariant-line idea (Lesson 6). Examiners particularly like questions that combine these strands — for instance, finding the eigenvalues of a matrix in terms of a parameter, then determining the value of that parameter for which the matrix is singular (a zero eigenvalue), or which makes two eigenvalues coincide (a repeated root, i.e. a zero discriminant of the characteristic quadratic). Recognising those triggers — "singular" means a zero eigenvalue, "repeated eigenvalue" means a zero discriminant — turns an apparently hard AO3 question into routine algebra.
For a square matrix A, a non-zero vector v is an eigenvector with eigenvalue λ (a scalar) if
Av=λv,v=0.The condition v=0 is essential: A0=λ0 holds trivially for every λ, so the zero vector is excluded by definition. Geometrically, A maps v to a scalar multiple of itself — same line through the origin, scaled by λ. So the line span{v} is an invariant line of the transformation (exactly the invariant lines of Lesson 6), and λ is the factor by which lengths along it are multiplied:
This is the unifying picture: the eigenvectors mark out the "skeleton" of the transformation — the handful of directions along which the matrix acts as a pure scaling. Every other vector is a combination of eigenvectors, and the matrix acts on it by scaling each eigen-component independently. That is precisely why eigenvectors make matrix powers easy (Lesson 9) and why they reveal the long-term behaviour of repeated transformations: iterate A many times and the eigen-component with the largest ∣λ∣ dominates, which is the mathematics behind population models, Markov chains and PageRank.
The diagram below shows a matrix with eigenvectors along (11) (eigenvalue 3, stretched) and (−11) (eigenvalue 1, fixed): a vector on each dashed line stays on that line.
Rearrange the defining relation, writing λv=λIv so both sides are matrix–vector products:
Av=λv⟺Av−λIv=0⟺(A−λI)v=0.This is a homogeneous system. From Lesson 5 it has a non-zero solution v precisely when its coefficient matrix is singular:
det(A−λI)=0.This is the characteristic equation; for an n×n matrix it is a degree-n polynomial in λ (the characteristic polynomial), whose roots are the eigenvalues. The procedure is therefore always two-stage: (1) solve det(A−λI)=0 for the eigenvalues; (2) for each eigenvalue, solve (A−λI)v=0 for the eigenvectors.
For a 2×2 matrix this collapses to a memorable form. If A=(c da b) then
det(A−λI)=a−λcbd−λ=λ2−(a+d)λ+(ad−bc)=λ2−(trA)λ+detA.So the 2×2 characteristic equation is λ2−(trA)λ+detA=0 — worth knowing by heart.
Find the eigenvalues and corresponding eigenvectors of A=(4213).
Step 1 — characteristic equation. trA=7, detA=12−2=10, so
λ2−7λ+10=0⇒(λ−5)(λ−2)=0⇒λ1=5, λ2=2.(Check: sum 5+2=7=trA ✓; product 5×2=10=detA ✓.)
Step 2 — eigenvectors. For λ1=5: (A−5I)v=(−121−2)(yx)=0. Both rows give −x+y=0, i.e. y=x, so v1=(11) (any non-zero multiple).
For λ2=2: (A−2I)v=(2211)(yx)=0. Both rows give 2x+y=0, i.e. y=−2x, so v2=(−21).
Mark scheme: M1 form det(A−λI); A1 characteristic equation λ2−7λ+10=0; A1 λ=5,2; M1 substitute one λ into (A−λI)v=0; A1 v1=(11); A1 v2=(−21). The trace/determinant check is examiner-approved insurance on the eigenvalues.
Find the eigenvalues and eigenvectors of A=21−1030002.
This matrix is lower triangular, so its eigenvalues are the diagonal entries: λ=2,3,2 — note λ=2 is repeated. (Check: sum 2+3+2=7=trA ✓.)
For λ=3: (A−3I)v=−11−100000−1v=0. Row 1 gives x=0; row 3 then gives z=0; y is free. Eigenvector v=010.
For λ=2 (repeated): (A−2I)v=01−1010000v=0. Row 3 gives x=0; row 2 then gives y=0; z is free. So there is only one independent eigenvector v=001 for the repeated eigenvalue — a defective eigenvalue (algebraic multiplicity 2, geometric multiplicity 1). This will matter for diagonalisation (Lesson 9).
Mark scheme: B1 eigenvalues 2,3,2 from the triangular structure (or M1 A1 via the characteristic polynomial); M1 solve (A−λI)v=0; A1 eigenvector for λ=3; A1 eigenvector for λ=2; A1 note only one independent eigenvector for the repeated eigenvalue.
Key fact: for any triangular matrix (upper or lower), the eigenvalues are exactly the diagonal entries — no characteristic-equation work needed.
The matrix A=(k123) depends on a constant k. (a) Find its eigenvalues in terms of k. (b) For what value of k is A singular? (c) For what value of k does A have a repeated eigenvalue?
(a) trA=k+3, detA=3k−2, so the characteristic equation is λ2−(k+3)λ+(3k−2)=0, giving λ=2(k+3)±(k+3)2−4(3k−2).
(b) A is singular when 0 is an eigenvalue, i.e. detA=0: 3k−2=0⇒k=32.
(c) A repeated eigenvalue means the discriminant of the characteristic quadratic vanishes: (k+3)2−4(3k−2)=0. Expanding, k2+6k+9−12k+8=k2−6k+17=0, whose discriminant is 36−68<0 — so there is no real k giving a repeated eigenvalue. (The eigenvalues stay distinct for every real k.)
Mark scheme: M1 form the characteristic equation in k; A1 correct quadratic; M1 set detA=0 for singularity; A1 k=32; M1 set the discriminant to 0 for a repeated eigenvalue; A1 conclude no real k. The two triggers — "singular ⇒det=0", "repeated ⇒ discriminant =0" — are exactly what the question rewards.
These relations are both exam shortcuts and error-catchers. Let A be n×n with eigenvalues λ1,…,λn.
| Property | Statement | Why it matters |
|---|---|---|
| Sum | λ1+⋯+λn=trA | quick check on the eigenvalues |
| Product | λ1⋯λn=detA | quick check; ties to singularity |
| Singularity | A singular ⟺0 is an eigenvalue | a zero eigenvalue means detA=0 |
| Powers | Ak has eigenvalues λik (same eigenvectors) | powers of A |
| Inverse | A−1 has eigenvalues 1/λi (same eigenvectors) | needs all λi=0 |
| Shift | A+kI has eigenvalues λi+k (same eigenvectors) | shifting the spectrum |
| Scalar | cA has eigenvalues cλi | scaling |
The "same eigenvectors" remark is the key insight for several of these: if Av=λv, then A2v=A(λv)=λAv=λ2v (so λ2 is an eigenvalue of A2, with the same v); similarly (A+kI)v=(λ+k)v. These one-line proofs are popular "show that" questions.
The matrix A has eigenvalues λ=3 and λ=−1, with eigenvectors (12) and (−11) respectively. Without finding A explicitly, state the eigenvalues and eigenvectors of (a) A3, (b) A−1, (c) 2A+3I, and (d) write down detA and trA.
(a) A3 has eigenvalues 33=27 and (−1)3=−1, with the same eigenvectors (12), (−11).
(b) A−1 exists (no zero eigenvalue) with eigenvalues 31 and −1, same eigenvectors.
(c) 2A+3I has eigenvalues 2(3)+3=9 and 2(−1)+3=1, same eigenvectors.
(d) detA=(3)(−1)=−3; trA=3+(−1)=2.
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.