Linear algebra MOC

Eigenvectors, eigenvalues, and eigenspaces

The eigenvectors of a Linear map are the vectors with images parallel to themselves under the transformation, i.e. the vectors which remain on their span. linalg Geometrically, such vectors are never rotated by the transformation, but are scaled by some factor , called the eigenvalue. linalg

Formally, the eigenvectors of a transformation are the vectors satisfying

for some scalar . The set of all such vectors for a given is called an eigenspace, as it necessarily forms a vector subspace.

The computation of eigenvalues uses the determinant

to form the characteristic polynomial. Once eigenvalues are known, eigenspaces can be found using Gaußian elimination on the augmented matrix .

An important process is Diagonalization, by which any diagonalisable matrix is turned into a diagonal matrix with its eigenvalues as entries along the diagonal.

Properties1

  1. Cayley-Hamilton Theorem — A matrix satisfies its own characteristic equation (by replacing with ).
  2. Any vectors from different eigenspaces form a linearly independent set.

For matrices, properties ^P1 and ^P2 allow for 3b1b’s eigenvalue trick.

Multiplicity

For each of a transformations eigenvalues we define algebraic and geometric multiplicity as follows

  • Algebraic multiplicity is how many roots of the characteristic polynomial correspond to that eigenvalue. linalg
  • Geometric multiplicity is the dimensions of the eigenspace linalg

Geometric multiplicity is at most the algebraic multiplicities.1 It is clearly impossible for an eigenspace to have dimension 0, so we have the inequality


tidy | sembr

Footnotes

  1. 2022. MATH1012: Mathematical theory and methods, pp. 103–102 2