ConceptComplete

Diagonalization

Diagonalization transforms a matrix into the simplest possible formβ€”a diagonal matrixβ€”by choosing an eigenvector basis. This process reveals the matrix's fundamental structure and enables efficient computation.

DefinitionDiagonalizable Matrix

An nΓ—nn \times n matrix AA is diagonalizable if there exists an invertible matrix PP and a diagonal matrix DD such that: A=PDPβˆ’1orΒ equivalentlyPβˆ’1AP=DA = PDP^{-1} \quad \text{or equivalently} \quad P^{-1}AP = D

The columns of PP are eigenvectors of AA, and the diagonal entries of DD are the corresponding eigenvalues.

When A=PDPβˆ’1A = PDP^{-1}, computing powers becomes trivial: Ak=PDkPβˆ’1A^k = PD^kP^{-1}, and DkD^k is just the diagonal entries raised to power kk.

TheoremDiagonalization Criterion

An nΓ—nn \times n matrix AA is diagonalizable if and only if AA has nn linearly independent eigenvectors.

Equivalently, AA is diagonalizable if and only if the sum of geometric multiplicities equals nn: βˆ‘Ξ»dim⁑(EΞ»)=n\sum_{\lambda} \dim(E_\lambda) = n

where the sum is over all distinct eigenvalues.

ExampleDiagonalizing a Matrix

Diagonalize A=[4123]A = \begin{bmatrix} 4 & 1 \\ 2 & 3 \end{bmatrix}.

Step 1: Find eigenvalues from det⁑(Aβˆ’Ξ»I)=0\det(A - \lambda I) = 0: (4βˆ’Ξ»)(3βˆ’Ξ»)βˆ’2=Ξ»2βˆ’7Ξ»+10=0(4-\lambda)(3-\lambda) - 2 = \lambda^2 - 7\lambda + 10 = 0 Eigenvalues: Ξ»1=5\lambda_1 = 5, Ξ»2=2\lambda_2 = 2.

Step 2: Find eigenvectors. For Ξ»1=5\lambda_1 = 5: v1=(11)\mathbf{v}_1 = \begin{pmatrix} 1 \\ 1 \end{pmatrix} For Ξ»2=2\lambda_2 = 2: v2=(1βˆ’2)\mathbf{v}_2 = \begin{pmatrix} 1 \\ -2 \end{pmatrix}

Step 3: Form P=[v1∣v2]=[111βˆ’2]P = [\mathbf{v}_1 \mid \mathbf{v}_2] = \begin{bmatrix} 1 & 1 \\ 1 & -2 \end{bmatrix} and D=[5002]D = \begin{bmatrix} 5 & 0 \\ 0 & 2 \end{bmatrix}.

Then A=PDPβˆ’1A = PDP^{-1}.

TheoremSufficient Conditions for Diagonalizability

A matrix AA is guaranteed to be diagonalizable if:

  1. AA has nn distinct eigenvalues, or
  2. AA is symmetric (or Hermitian for complex matrices), or
  3. For each eigenvalue Ξ»\lambda, the geometric multiplicity equals the algebraic multiplicity
DefinitionSimilar Matrices

Matrices AA and BB are similar if there exists an invertible matrix PP such that B=Pβˆ’1APB = P^{-1}AP.

Similar matrices represent the same linear transformation in different bases. They share:

  • Eigenvalues (with same multiplicities)
  • Characteristic polynomial
  • Determinant
  • Trace
  • Rank
Remark

Not all matrices are diagonalizable. For example, [1101]\begin{bmatrix} 1 & 1 \\ 0 & 1 \end{bmatrix} has only one eigenvalue (Ξ»=1\lambda = 1) with geometric multiplicity 1, but algebraic multiplicity 2. Such matrices are handled by Jordan canonical form, which generalizes diagonalization.