Eigenvalues and Eigenvectors
Core Titles
Key headlines and terms for quick recall- Eigenvalue equation with
- Characteristic polynomial
- Algebraic vs Geometric multiplicity
- Diagonalizable matrix
- Spectrum — set of eigenvalues
- Eigendecomposition
- Spectral theorem (real symmetric ⇒ orthogonally diagonalizable)
Basic Idea
What it is, why it matters, how it worksDefinition
For a square matrix , a scalar is an eigenvalue and an eigenvector if i.e., only stretches by factor — direction unchanged.
How to find them
Rewrite: . For non-zero , must be singular, so This is the characteristic polynomial in . Its roots are the eigenvalues. For each root, solve to get the eigenvectors.
Key properties
- Eigenvalues of are
- is invertible ⇔ no eigenvalue is 0
Algebraic vs Geometric multiplicity
- Algebraic — multiplicity of as a root of char polynomial.
- Geometric — dimension of eigenspace .
- Always geometric algebraic.
- is diagonalizable iff for every , geometric = algebraic.
Diagonalization
If has linearly independent eigenvectors, then where is diagonal of eigenvalues and has eigenvectors as columns.
Spectral theorem (most important case)
If is real symmetric, then:
- All eigenvalues are real.
- Eigenvectors of distinct eigenvalues are orthogonal.
- with orthogonal.
Why this matters in Data Science
- PCA: eigenvectors of the covariance matrix are the principal components; eigenvalues are the variances along them.
- Spectral clustering: eigenvectors of the graph Laplacian reveal clusters.
- PageRank: dominant eigenvector of the link matrix.
- Stability of dynamical systems and Markov chains.
Mind Map
Visual structure of the conceptEIGENVALUES & EIGENVECTORS
├── Av = λv, v ≠ 0
├── Find via det(A − λI) = 0
├── Properties
│ ├── Σλᵢ = tr(A)
│ ├── Πλᵢ = det(A)
│ └── λᵢ(Aᵏ) = (λᵢ)ᵏ
├── Multiplicities
│ ├── Algebraic
│ └── Geometric ≤ Algebraic
├── Diagonalizable: A = PDP⁻¹
└── Spectral theorem (A = Aᵀ)
└── A = QΛQᵀ, Q orthogonal
Exam Q&A
Part A (2 marks) and Part B (20 marks) style questionsPart A (2 marks each)
Q1. Define eigenvalue and eigenvector. A scalar and non-zero vector such that .
Q2. What is the characteristic polynomial? — its roots are the eigenvalues of .
Q3. State the relation between trace and eigenvalues. .
Q4. When is a matrix diagonalizable? When it has linearly independent eigenvectors (geometric multiplicity = algebraic multiplicity for each eigenvalue).
Part B (20 marks)
Q. Find the eigenvalues and eigenvectors of . Diagonalize and use it to compute .
Step 1 — Characteristic polynomial. . .
Step 2 — Eigenvectors.
For : : .
For : : .
Step 3 — Diagonalize. , , .
, so .
Step 4 — . where .
This is the power of diagonalization — instead of multiplying by itself 10 times, we exponentiate the eigenvalues.