Eigenvalues and eigenvectors — the directions that transformation preserves.
Apply this matrix to many vectors:
Most vectors change direction. But watch these two:
These vectors only get scaled — their direction survives!
v₁ is scaled by 3. v₂ is scaled by 1 (unchanged).
These special directions are eigenvectors. The scale factors are eigenvalues.
Under a linear transformation, most directions rotate. But some directions are special — they only stretch or compress, never rotate.
Finding these invariant directions reveals the essential structure of the transformation.
| Situation | Eigenanalysis gives you |
|---|---|
| "What directions does this matrix preserve?" | Eigenvectors |
| "By how much are they scaled?" | Eigenvalues |
| "Simplify this matrix?" | Diagonalization |
| "Solve coupled differential equations?" | Decouple via eigenvectors |
| "Find normal modes of vibration?" | Eigenvectors of Hessian |
| "Find molecular orbitals?" | Eigenvectors of Hamiltonian |
| "Long-term behavior of iterated process?" | Dominant eigenvalue |
| "Is this matrix stable?" | Check if all |λ| < 1 |
| "Principal components?" | Eigenvectors of covariance |
Interpretation:
Terminology:
This is a subspace containing all eigenvectors for λ (plus the zero vector).
Key insight: Av = λv can be rewritten:
For a nonzero solution v to exist, (A - λI) must be singular:
This is the characteristic equation.
The eigenvalues are the roots of p(λ) = 0.
For $A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}$:
The eigenvalues satisfy:
Quadratic formula:
tr(A) = 4, det(A) = 4 - 1 = 3
λ₁ = 3, λ₂ = 1
Check: 3 + 1 = 4 = tr(A) ✓, 3 × 1 = 3 = det(A) ✓
Triangular matrices: Eigenvalues are the diagonal entries.
Once you have eigenvalue λ, find eigenvectors by solving:
This is a homogeneous system — find the null space of (A - λI).
Solve: -v₁ + v₂ = 0, so v₁ = v₂.
Eigenvector: v₁ = (1, 1) (or any scalar multiple)
For λ₂ = 1:
Solve: v₁ + v₂ = 0, so v₂ = -v₁.
Eigenvector: v₂ = (1, -1)
Symmetric matrices (A = Aᵀ):
Physical matrices (Hamiltonians, Hessians, covariance matrices) are typically symmetric — the spectral theorem guarantees nice behavior.
Orthogonal matrices (AᵀA = I):
Positive definite matrices:
Real matrices can have complex eigenvalues. This happens when:
The eigenvalues are complex conjugates: λ = α ± βi.
tr(R) = 2cos θ, det(R) = 1
The eigenvalues are complex! (No real direction is preserved by a rotation.)
Complex eigenvalues indicate rotation within a plane.
Diagonalization means finding P such that:
If A has n linearly independent eigenvectors v₁, ..., vₙ:
Therefore: AP = PD ⟹ P⁻¹AP = D
A matrix is not diagonalizable if it doesn't have n linearly independent eigenvectors.
This happens when geometric multiplicity < algebraic multiplicity for some eigenvalue.
Characteristic polynomial: (1-λ)² = 0, so λ = 1 (algebraic multiplicity 2).
Eigenspace: A - I = [0 1; 0 0]. Null space is span{(1, 0)}. Geometric multiplicity = 1.
Only one independent eigenvector — not diagonalizable.
In the eigenvector basis, the transformation is just scaling along axes:
Powers: $A^k = PD^kP^{-1}$ (and Dᵏ is trivial — just raise diagonal entries to kth power)
Exponentials: $e^{At} = Pe^{Dt}P^{-1}$ (useful for differential equations)
In Hückel theory, molecular orbital energies are eigenvalues of the Hamiltonian matrix:
where:
Setting x = (α - E)/β:
(α - E) = ±β
E₁ = α + β (bonding), E₂ = α - β (antibonding)
Since β < 0, E₁ < E₂.
Eigenvectors (MO coefficients):
The Hessian matrix of second derivatives:
Eigenvalue problem: Hq = ω²q
The time-independent Schrödinger equation:
This IS an eigenvalue problem:
Allowed energies are eigenvalues. Stationary states are eigenvectors.
| Step | Method |
|---|---|
| 1. Find eigenvalues | Solve det(A - λI) = 0 |
| 2. For each λ, find eigenvectors | Solve (A - λI)v = 0 |
| 3. Check | Verify Av = λv |
| Property | Formula |
|---|---|
| Characteristic polynomial | p(λ) = det(A - λI) |
| Sum of eigenvalues | tr(A) |
| Product of eigenvalues | det(A) |
| Eigenvalues of Aᵏ | λᵢᵏ |
| Eigenvalues of A⁻¹ | 1/λᵢ |
| Symmetric ⟹ | Real eigenvalues, orthogonal eigenvectors |
Find the eigenvalues and eigenvectors of:
(a) $\begin{pmatrix} 4 & 2 \\ 1 & 3 \end{pmatrix}$
(b) $\begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix}$
(c) $\begin{pmatrix} 3 & 1 \\ 0 & 3 \end{pmatrix}$
(a) tr = 7, det = 12 - 2 = 10. λ = (7 ± √(49-40))/2 = (7 ± 3)/2. λ₁ = 5, λ₂ = 2.
For λ = 5: (A - 5I)v = [-1 2; 1 -2]v = 0 → v = (2, 1)
For λ = 2: (A - 2I)v = [2 2; 1 1]v = 0 → v = (1, -1)
(b) tr = 0, det = 1. λ = (0 ± √(-4))/2 = ±i. Complex eigenvalues λ = ±i.
This is rotation by 90° — no real eigenvectors.
(c) tr = 6, det = 9. λ = (6 ± √(36-36))/2 = 3. λ = 3 (double root).
For λ = 3: (A - 3I)v = [0 1; 0 0]v = 0 → v = (1, 0) only.
Only one eigenvector — not diagonalizable.
For $A = \begin{pmatrix} 1 & 2 \\ 2 & 1 \end{pmatrix}$:
(a) Find eigenvalues using tr and det.
(b) Find eigenvectors.
(c) Verify that eigenvectors are orthogonal (why should they be?).
(d) Construct P and verify P⁻¹AP = D.
(a) tr = 2, det = 1 - 4 = -3. λ = (2 ± √(4+12))/2 = (2 ± 4)/2. λ₁ = 3, λ₂ = -1.
(b) For λ = 3: [-2 2; 2 -2]v = 0 → v₁ = (1, 1)
For λ = -1: [2 2; 2 2]v = 0 → v₂ = (1, -1)
(c) v₁ · v₂ = 1 - 1 = 0 ✓ Orthogonal because A is symmetric.
(d) P = [1 1; 1 -1], P⁻¹ = [1/2 1/2; 1/2 -1/2]
P⁻¹AP = [3 0; 0 -1] = D ✓
For a matrix with eigenvalues 2, 3, 5:
(a) What is the trace?
(b) What is the determinant?
(c) What are the eigenvalues of A²?
(d) What are the eigenvalues of A⁻¹?
(a) tr = 2 + 3 + 5 = 10
(b) det = 2 × 3 × 5 = 30
(c) Eigenvalues of A²: 4, 9, 25 (square each)
(d) Eigenvalues of A⁻¹: 1/2, 1/3, 1/5
Find the eigenvalues of the rotation matrix:
Express them in the form e^(iθ). What does this tell you geometrically?
tr = 1, det = 1/4 + 3/4 = 1.
λ = (1 ± √(1-4))/2 = (1 ± √(-3))/2 = 1/2 ± i√3/2
In polar form: λ = cos(60°) ± i sin(60°) = e^(±iπ/3)
Geometrically: rotation by 60° has eigenvalues on unit circle at angles ±60°.
For the allyl system (3 carbons in a row), the Hückel matrix is:
(a) Setting α = 0 and β = -1, find the eigenvalues.
(b) Find the eigenvectors (MO coefficients).
(c) Which MO is bonding? Nonbonding? Antibonding?
(a) With α = 0, β = -1: H = [0 -1 0; -1 0 -1; 0 -1 0]
Characteristic polynomial: -λ³ + 2λ = -λ(λ² - 2) = 0
Eigenvalues: λ = 0, √2, -√2
(Energies: E = α + √2|β|, α, α - √2|β|)
(b) For λ = √2: c ∝ (1, √2, 1) (bonding)
For λ = 0: c ∝ (1, 0, -1) (nonbonding — node at center)
For λ = -√2: c ∝ (1, -√2, 1) (antibonding)
(c) Bonding: E = α + √2|β| (lowest energy).
Nonbonding: E = α.
Antibonding: E = α - √2|β| (highest energy).
Lecture 11: Symmetry
The eigenvectors of symmetric matrices are orthogonal. Molecular symmetry operations form groups. The mathematics of invariance.
Chemical Thinking: The Grammar of Reality
Lecture 10 — What Survives?