Definition
For a square matrix A, an eigenvector v=0 satisfies:
Av=λv
where λ is the eigenvalue.
Key: Applying A to its eigenvector just scales it by λ.
Characteristic Polynomial
Rearrange: (A−λI)v=0
Non-trivial solutions exist when det(A−λI)=0.
This gives the characteristic polynomial:
PA(λ)=det(A−λI)=0
An n×n matrix has exactly n eigenvalues (counting multiplicities).
Finding Eigenvalues and Eigenvectors
Step 1: Solve PA(λ)=0 for eigenvalues.
Step 2: For each λ, solve (A−λI)v=0 for v.
Example
Find eigenvalues and eigenvectors of A=(2112).

Characteristic polynomial:
det(A−λI)=det(2−λ112−λ)
=(2−λ)2−1=λ2−4λ+3=(λ−1)(λ−3)
Eigenvalues: λ1=1, λ2=3.
Eigenvector for λ=1:
(A−I)v=(1111)v=0
⇒v1+v2=0
v1=(1−1)
Eigenvector for λ=3:
(A−3I)v=(−111−1)v=0
⇒v1=v2
v2=(11)
Properties
| Property | Formula |
|---|
| Sum of eigenvalues | λ1+⋯+λn=Tr(A) |
| Product of eigenvalues | λ1⋯λn=det(A) |
| Inverse eigenvalues | If Av=λv, then A−1v=λ−1v |
| Polynomial | Akv=λkv |
Real Symmetric Matrices
For real symmetric A (A=AT):
- All eigenvalues are real
- Eigenvectors for different eigenvalues are orthogonal
- Can always find n orthonormal eigenvectors
Diagonalisation
If A has n linearly independent eigenvectors v1,…,vn:
A=SΛS−1
where S has eigenvectors as columns, and Λ=diag(λ1,…,λn).

For symmetric matrices: S can be orthogonal, so S−1=ST.
Diagonalisation Example
For A=(2112):
S=(1−111), Λ=(1003)
Verify: SΛS−1=A.
Application: Hessian Matrix
For stationary point analysis, diagonalise the Hessian H:
- All λi>0 → local minimum
- All λi<0 → local maximum
- Mixed signs → saddle point
Eigenvalues give the curvatures in principal directions.
Matrices A and B are similar if B=P−1AP for some invertible P.
Similar matrices represent the same linear map in different bases. They share:
- Eigenvalues
- Determinant
- Trace
Why Eigenvalues Matter
- Dynamics: Akx=SΛkS−1x (long-term behaviour)
- Stability: Eigenvalues of Jacobian determine stability of fixed points
- Vibrations: Natural frequencies are eigenvalues
- Quantum mechanics: Observable values are eigenvalues
- Principal component analysis: Covariance matrix eigenvectors