Eigenvalue Eigenvector

Compute eigenvalues and eigenvectors of a 2x2 matrix instantly. Free online linear algebra calculator finds eigenvalues and eigenvectors for real-valued matrices with step-by-step results.

Find eigenvalues & eigenvectors

About This Calculator

This calculator computes the eigenvalues and eigenvectors of a 2x2 real matrix. For matrix A = [[a, b], [c, d]], the eigenvalues lambda satisfy the characteristic equation det(A-lambdaI) = lambda^2 - tr(A)lambda + det(A) = 0, where tr(A) = a+d and det(A) = ad-bc. The eigenvectors are computed by solving (A-lambdaI)v = 0 for each eigenvalue.

The eigenvalue problem Av = lambdav is fundamental in linear algebra. Geometrically, eigenvectors are directions that are invariant under the matrix transformation -- they are only scaled, not rotated. The eigenvalue lambda tells the scaling factor. A negative eigenvalue means the vector is reflected; an eigenvalue with magnitude > 1 means stretching; < 1 means compression.

How to use: Enter the four entries a, b, c, d of your 2x2 matrix and click Compute. The calculator displays both eigenvalues and their corresponding eigenvectors. If the discriminant is negative (complex eigenvalues), the calculator shows an error message. The eigenvalues satisfy lambda1 + lambda2 = trace and lambda1 x lambda2 = determinant, which you can verify with the results.

Frequently Asked Questions

What are eigenvalues and eigenvectors?

For a square matrix A, an eigenvector v satisfies Av = lambdav, where lambda is the eigenvalue (a scalar). Geometrically, the eigenvector is a direction that is preserved (only scaled, not rotated) when the matrix transformation is applied. The eigenvalue tells how much the vector is stretched or compressed.

How do you find eigenvalues of a 2x2 matrix?

Eigenvalues lambda satisfy the characteristic equation det(A-lambdaI)=0. For a 2x2 matrix [[a,b],[c,d]], this expands to lambda^2 - (a+d)lambda + (ad-bc) = 0. The solutions are lambda = (tr(A) +/- sqrt(tr(A)^2 - 4det(A))) / 2. The trace tr(A)=a+d and determinant det(A)=ad-bc.

What does a negative discriminant mean?

A negative discriminant means the eigenvalues are complex numbers (not real). This calculator handles only real eigenvalues. Complex eigenvalues typically indicate that the transformation involves rotation in the plane, such as an elliptical flow or oscillatory system.

What are eigenvalues used for in real life?

Eigenvalues are used in structural engineering (determining natural frequencies of bridges and buildings), Google's PageRank algorithm (the principal eigenvector determines page importance), quantum mechanics (energy levels are eigenvalues of the Hamiltonian), data science (PCA uses eigenvectors of the covariance matrix), and image compression (eigendecomposition of image matrices).

What does a zero eigenvalue mean?

A zero eigenvalue means the matrix has a non-trivial nullspace (the matrix is singular, meaning it has no inverse). Geometrically, the matrix transformation collapses vectors along the corresponding eigenvector direction to zero.

What is the relationship between trace, determinant, and eigenvalues?

For any matrix, the sum of eigenvalues equals the trace (lambda1+lambda2 = a+d) and the product of eigenvalues equals the determinant (lambda1xlambda2 = ad-bc). These relationships provide a quick check: verify that your computed eigenvalues satisfy these identities.