Linear Algebra

Eigenvalues and Eigenvectors

An eigenvalue λ of a matrix A is a scalar with a non-zero vector v such that Av = λv. The calculator constructs the characteristic polynomial det(A − λI), finds its real roots, and for each eigenvalue recovers an eigenvector from the null space of A − λI.

Eigenvalues and Eigenvectors

Characteristic polynomial, real eigenvalues and one eigenvector per eigenvalue.

Try:
Answerλ1 = 5, λ2 = 2; λ=5 → v=(0.707107, 0.707107); λ=2 → v=(-0.447214, 0.894427)
  1. Matrix A2×2 [[4, 1], [2, 3]]
  2. Characteristic polynomialdet(A − λI) = λ² − tr(A)·λ + det(A) = λ² − 7·λ + 10
  3. Eigenvaluesλ1 = 5, λ2 = 2
  4. Eigenvectorλ = 5: v = (0.707107, 0.707107)
  5. Eigenvectorλ = 2: v = (-0.447214, 0.894427)

Worked examples

Frequently asked questions

What is the characteristic polynomial?

p(λ) = det(A − λI). Its roots are the eigenvalues of A. For an n×n matrix it has degree n.

Why might no real eigenvalues appear?

Rotations and other real matrices can have purely complex eigenvalues. This calculator reports only real roots; if the characteristic polynomial has no real roots it says so explicitly.

What if the eigenspace is multi-dimensional?

The calculator returns one representative eigenvector per eigenvalue. When an eigenvalue is repeated, the eigenspace may have more independent eigenvectors than shown.