Eigenvalues

Eigenvalues, eigenvectors & eigenspaces

Eigenvector xx corresponding to eigenvalue λ\lambda of an n×nn \times n matrix AA:

Ax=λx A\vec{x} = \lambda\vec{x}

The eigenvalues of a triangular matrix are the entries on its main diagonal

λ\lambda is an eigenvalue of an n×nn \times n matrix AA if and only if the equation (AλI)x=0 (A - \lambda I)\vec{x}=\vec{0} has a nontrivial solution / detAλI=0\det A - \lambda I = 0 / the matrix is linearly dependent.

The set of all solutions of AλIA - \lambda I is called the eigenspace

Note: eigenvalues & eigenvectors can be complex.

Diagonalization #

Rewrite AA as PDP1PDP^{-1}

PDP1PDP^{-1} where D is the diagonal matrix

  1. Compute eigenvalues
  2. Compute eigenvectors
  3. Create DD by filling in the eigenvalues over the diagonal
  4. PP has the eigenvectors of the corresponding eigenvalues in the same order
  5. Compute P1P^{-1}

Diagonal matrices can be used to compute matrix powers faster since:

AK=PDkP1 A^K = PD^{k}P^{-1}

Since DD is a diagonal matrix, computing its power is easy.