Mathematics, Statistics & Geometry

Eigenvalue Calculator

Calculate the exact eigenvalues of a 2x2 matrix. Uses the characteristic polynomial to find real and complex conjugate roots with clear steps.

Eigenvalue λ₁
3
Eigenvalue λ₂1
Calculation StepsMatrix A: | 2 1 | | 1 2 | Trace (sum of diagonal) = 2 + 2 = 4 Determinant = (2*2) - (1*1) = 3 Characteristic Equation: λ² - Trace*λ + Det = 0 λ² - (4)λ + (3) = 0 Discriminant (Δ) = (4)² - 4(3) = 4.000000 Roots are real. λ₁ = (4 + √4.0000) / 2 = 3.000000 λ₂ = (4 - √4.0000) / 2 = 1.000000

Calculated locally in your browser. Fast, secure, and private.

The DNA of Linear Transformations

The Eigenvalue Calculator demystifies one of the most abstract concepts in linear algebra. When a matrix multiplies a vector, it usually rotates and stretches it. However, every matrix has specific vectors that only get stretched—these are eigenvectors, and the amount they stretch is the Eigenvalue.

det(AλI)=0    λ2tr(A)λ+det(A)=0\begin{aligned} \det(A - \lambda I) = 0 \implies \lambda^2 - \text{tr}(A)\lambda + \det(A) = 0 \end{aligned}

Where:
λ\lambda=
The scalar multiplier
tr(A)\text{tr}(A)=
The sum of the main diagonal elements
det(A)\det(A)=
The determinant of the matrix

The Characteristic Equation

To find the eigenvalues (λ\lambda) of a 2×22 \times 2 matrix, we must solve the characteristic equation: λ2Trace(A)λ+Det(A)=0\lambda^2 - \text{Trace}(A)\lambda + \text{Det}(A) = 0

  1. Trace: The sum of the main diagonal.
  2. Det: The determinant (adbcad - bc). Once constructed, this is just a standard quadratic equation that can be solved using the quadratic formula, yielding up to two eigenvalues.

Why Eigenvalues Are Extremely Important

Eigenvalues govern the stability and long-term behavior of systems.

  • Structural Engineering: Calculating the natural resonant frequencies of bridges and buildings to prevent collapse during earthquakes.
  • Quantum Mechanics: Eigenvalues of the Hamiltonian operator represent the allowable energy states of an atom.
  • Computer Science: Google's original PageRank algorithm modeled the internet as a giant matrix—the PageRanks are simply the eigenvector corresponding to the dominant eigenvalue.

Frequently Asked Questions

An eigenvalue is a special scalar (number) associated with a matrix. When the matrix transforms an 'eigenvector', the vector doesn't change direction—it only stretches or shrinks by the eigenvalue amount.

It comes from the German word 'eigen', meaning 'proper', 'characteristic', or 'own'. It refers to the intrinsic properties of the matrix.

You find the roots of the characteristic polynomial: λ² - Trace(A)λ + Det(A) = 0. The Trace is the sum of the top-left and bottom-right numbers.

Yes. If the matrix represents a rotation, the characteristic polynomial will have a negative discriminant, resulting in complex conjugate eigenvalues.

If any eigenvalue is 0, the determinant of the matrix is also 0. This means the matrix is singular and cannot be inverted.