Diagonalisation

25 min
0/4 practice checks

A square matrix AA is diagonalisable if it can be written

A=PDP1,A = P D P^{-1},

where DD is diagonal (its entries are the eigenvalues of AA) and the columns of PP are the corresponding eigenvectors. This is possible exactly when AA has a full set of nn linearly independent eigenvectors.

Why it is useful. Powers become trivial:

Ak=PDkP1,A^k = P D^k P^{-1},

and DkD^k just raises each diagonal entry to the kk-th power. Computing A10A^{10} directly is punishing; through DD it is one line.

Worked example. A=(2112)A = \begin{pmatrix} 2 & 1 \\ 1 & 2 \end{pmatrix} has eigenvalues 3,13, 1 with eigenvectors (1,1),(1,1)(1,1), (1,-1), so P=(1111)P = \begin{pmatrix} 1 & 1 \\ 1 & -1 \end{pmatrix} and D=(3001).D = \begin{pmatrix} 3 & 0 \\ 0 & 1 \end{pmatrix}.

An n×nn \times n matrix is diagonalisable exactly when it has…

AA has eigenvalues 33 and 11. What is the largest eigenvalue of A2A^2?

In the factorisation A=PDP1A = P D P^{-1}, the columns of PP are…

AA has eigenvalues 22 and 33. Find the trace of A3A^3 (the sum of the eigenvalues of A3A^3).