Decomposing a Matrix
A matrix is diagonalisable if it can be written as , where is a diagonal matrix of eigenvalues and has eigenvectors as columns.
Why this matters: matrix powers become trivial via . Raising to the -th power requires zero matrix multiplications.
The Recipe:
- Solve for eigenvalues.
- Solve for eigenvectors.
- Form and .
| Problem | Without | With it |
|---|---|---|
| 99 multiplications | Raise diagonal numbers | |
| Long run | Simulate | Read dominant eigenvalue |
Pitfall: Distinct eigenvalues guarantee diagonalisability, but repeated ones may lack independent eigenvectors.
Matrix Powers and Steady States
Diagonalisation yields the closed-form solution: .
Dominant eigenvalue controls long-run behaviour:
| System Behaviour | |
|---|---|
| Decays to zero | |
| Converges to steady state | |
| Explodes |
Example: For Markov matrices, gives the stationary distribution. As , , leaving only the dominant eigenvector.
Tip: In Markov matrices, the dominant eigenvalue is 1. Its normalised eigenvector is the long-run market share.