Diagonalisation is the process of expressing a matrix in the form A=PDP−1, where D is a diagonal matrix of eigenvalues and P is a matrix of eigenvectors. This is extremely useful for computing matrix powers and understanding the long-term behaviour of repeated transformations.
The Diagonalisation Formula
If an n×n matrix A has n linearly independent eigenvectors, then:
A=PDP−1
where:
D=λ10⋮00λ2⋮0⋯⋯⋱⋯00⋮λn is the diagonal matrix of eigenvalues
P=(v1v2⋯vn) is the matrix whose columns are the corresponding eigenvectors
When Is a Matrix Diagonalisable?
A matrix is diagonalisable if and only if it has n linearly independent eigenvectors (where n is the matrix size).
This is guaranteed when:
The matrix has ndistinct eigenvalues
The matrix is symmetric (always diagonalisable with real eigenvalues)
It may fail when:
There are repeated eigenvalues and insufficient independent eigenvectors
2×2 Worked Example
DiagonaliseA=(4213).
From the previous lesson: eigenvalues λ1=5, λ2=2; eigenvectors v1=(11), v2=(1−2).