Eigenvalues & Eigenvectors

Find every eigenvalue of a square matrix: exact fractions when rational, exact surd form for the quadratic cases, and complex conjugate pairs when they show up — each with its eigenspace.
Computed
Eigenvalues, eigenspaces and the working are shown below.
Input matrix A3×3

Integers, negatives, decimals or fractions (e.g. 3, -2, 1/2). Empty cells count as 0.

Characteristic polynomial

det(λI − A) = λ^3

The eigenvalues are the roots of this polynomial.

λ1
exactalg 3geo 3

0

Eigenspace basis (eigenvectors):

(1, 0, 0)(0, 1, 0)(0, 0, 1)

Step-by-step solution

  1. 1

    Characteristic polynomial

    Compute p(λ) = det(λI − A) with the Faddeev-LeVerrier algorithm. Each coefficient is built from traces of exactly-computed matrix products, so no rounding occurs.

    p(λ)=λ3p(\lambda) = \lambda^{3}
    • p(λ) = λ^3
  2. 2

    Search for rational roots

    Apply the Rational Root Theorem: every rational root p/q (in lowest terms) has p | constant term and q | leading coefficient. Roots found: 0 (×3).

    • λ = 0, algebraic multiplicity 3
  3. 3

    Eigenspace of λ = 0

    Solve (A − 0 I)v = 0 by Gaussian elimination. Algebraic multiplicity 3, geometric multiplicity 3. Basis: (1, 0, 0), (0, 1, 0), (0, 0, 1).

    (AλI)v=0(A - \lambda I)\,v = 0
  4. 4

    Summary

    A is diagonalizable: its eigenvectors form a basis of ℝ^3, so A = P D P⁻¹.