Courses / Business I
Mathematics II

Matrix Diagonalisation

Business I 229 words Free to read

Decomposing a Matrix

A matrix AA is diagonalisable if it can be written as A=PDP1A = PDP^{-1}, where DD is a diagonal matrix of eigenvalues and PP has eigenvectors as columns.

Why this matters: matrix powers become trivial via An=PDnP1A^n = PD^nP^{-1}. Raising DD to the nn-th power requires zero matrix multiplications.

The Recipe:

  1. Solve det(AλI)=0\det(A - \lambda I) = 0 for eigenvalues.
  2. Solve (AλI)v=0(A - \lambda I)\mathbf{v} = \mathbf{0} for eigenvectors.
  3. Form PP and DD.
ProblemWithout PDP1PDP^{-1}With it
A100A^{100}99 multiplicationsRaise diagonal numbers
Long runSimulateRead 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: xn=c1λ1nv1+c2λ2nv2\mathbf{x}_n = c_1 \lambda_1^n \mathbf{v}_1 + c_2 \lambda_2^n \mathbf{v}_2.

Dominant eigenvalue controls long-run behaviour:

λmax|\lambda_{\text{max}}|System Behaviour
<1< 1Decays to zero
=1= 1Converges to steady state
>1> 1Explodes

Example: For Markov matrices, λ1=1\lambda_1 = 1 gives the stationary distribution. As nn \to \infty, 0.3n00.3^n \to 0, leaving only the dominant eigenvector.

Tip: In Markov matrices, the dominant eigenvalue is 1. Its normalised eigenvector is the long-run market share.
Matrix Powers

Practise this lesson

The explanation above is free to read. The graded practice for this lesson lives in the Tryals app.

14practice questions
2interactive scenes

Mathematics II