Eigendecomposition

1 min read

An eigenvector v\mathbf{v} of matrix AA is a nonzero vector whose direction is unchanged by the transformation: Av=λvA\mathbf{v} = \lambda\mathbf{v}, where λ\lambda is the eigenvalue.

Geometric meaning: eigenvectors are the directions that get purely scaled (not rotated) under the transformation. The eigenvalue λ\lambda is the scale factor.

Eigendecomposition: if AA has nn linearly independent eigenvectors, then A=PDP1A = PDP^{-1}, where PP is the matrix of eigenvectors and DD is diagonal with eigenvalues.

Key properties:

  • det(A)=λi\text{det}(A) = \prod \lambda_i — determinant is the product of eigenvalues
  • tr(A)=λi\text{tr}(A) = \sum \lambda_i — trace is the sum of eigenvalues
  • Ak=PDkP1A^k = PD^kP^{-1} — powers become trivial in eigenspace

Where it appears:

Computed via Power Iteration (dominant eigenvalue) or characteristic polynomial det(AλI)=0\det(A - \lambda I) = 0.

See also: Singular Value Decomposition (SVD)

Linked from