Eigen-Stuff

Definitions

Eigenvalue and Eigenvector

Let T:VVT: V \rightarrow V be a linear transformation on a vector space VV over a field F\mathbb{F}. A scalar λF\lambda \in \mathbb{F} is called an eigenvalue of TT if there exists a non-zero vector vVv \in V such that:

T(v)=λvT(v) = \lambda v

The non-zero vector vv is called an eigenvector corresponding to the eigenvalue λ\lambda.

Eigenspace

For a given eigenvalue λ\lambda of TT, the eigenspace EλE_\lambda is the set of all vectors that satisfy T(v)=λvT(v) = \lambda v, including the zero vector:

Eλ={vV:T(v)=λv}E_\lambda = \{v \in V : T(v) = \lambda v\}

The eigenspace is a subspace of VV.

Properties

Finding Eigenvalues and Eigenvectors

The eigenvalues of a matrix AA are found by solving the characteristic polynomial:

pA(λ)=det(AλI)=0p_A(\lambda) = \det(A - \lambda I) = 0

For each eigenvalue λ\lambda, the corresponding eigenvectors are the non-zero solutions to:

(AλI)v=0(A - \lambda I)v = 0

Multiplicity

  • The algebraic multiplicity of an eigenvalue is its multiplicity as a root of the characteristic polynomial.
  • The geometric multiplicity of an eigenvalue is the dimension of its eigenspace.

Important Theorems

  1. The sum of the algebraic multiplicities of all eigenvalues equals the size of the matrix.
  2. The geometric multiplicity of an eigenvalue is always less than or equal to its algebraic multiplicity.
  3. A matrix is diagonalizable if and only if the geometric multiplicity equals the algebraic multiplicity for every eigenvalue.

Examples

2x2 Matrix

Consider the matrix:

A=(2112)A = \begin{pmatrix} 2 & 1 \\ 1 & 2 \end{pmatrix}
  1. Find eigenvalues:
λ=1,3\lambda = 1, 3
  1. Find eigenvectors:
    • For λ=1\lambda = 1: (AI)v=0v=(11)(A - I)v = 0 \Rightarrow v = \begin{pmatrix} 1 \ -1 \end{pmatrix}
    • For λ=3\lambda = 3: (A3I)v=0v=(11)(A - 3I)v = 0 \Rightarrow v = \begin{pmatrix} 1 \ 1 \end{pmatrix}

Applications

Eigenvalues and eigenvectors are fundamental in:

  • Solving systems of differential equations
  • Principal Component Analysis (PCA) in statistics
  • Stability analysis in physics and engineering
  • Quantum mechanics (energy levels and states)
  • Graph theory (spectral graph theory)
  • Computer graphics (principal axes of objects)