Eigenvalues and Eigenvectors

Eigenvalues and eigenvectors show which vectors a matrix scales without rotating, revealing fundamental properties of linear transformations and systems.

Av=λvA\mathbf{v} = \lambda\mathbf{v}

Solve a problem with Eigenvalues and Eigenvectors

Type the problem. The solver will use Eigenvalues and Eigenvectors where Eigenvalues and Eigenvectors is the right tool, and tell you when it is not.

Drag one in or paste from the clipboard. JPEG, PNG or WebP. You get the transcription to check before anything is solved.

How to get a better answer
  • Paste the whole problem, including the instruction word — "simplify", "solve for x" and "factor" lead to three different answers.
  • Say what you have already tried. "I got x = 4 and the book says 2" turns a solution into a diagnosis.
  • Set the level in the settings button. A calculus shortcut is not a better answer if you have not met derivatives yet.
  • For a photo, get the whole problem in frame and hold the page flat — you get the transcription to fix before anything is solved.

What each symbol means

What Eigenvalues and Eigenvectors takes
AA
v\mathbf{v}
λ\lambda
Eigenvalues and Eigenvectors
SymbolMeaning
AAThe matrix whose behavior you are analyzing—the linear transformation itself. If you confuse this with a vector, you lose the entire framework for understanding the transformation.
v\mathbf{v}The eigenvector—a nonzero vector that the matrix transforms without changing its direction, only its length. If you allow this to be zero, the eigenvalue becomes meaningless since every scalar works.
λ\lambdaThe eigenvalue—the scalar (real or complex) that measures how much the matrix stretches or compresses the vector in the direction of v\mathbf{v}. Negative values mean the direction reverses as well as scales.

When to use it

Use eigenvalues and eigenvectors when you need to understand how a linear transformation behaves on certain special directions, or solve systems of differential equations.

Level

Usually taught in: Linear Algebra

Worked examples

1. Find eigenvalues and eigenvectors of a 2×2 matrix

Problem

Find all eigenvalues and eigenvectors of A=(4123)A = \begin{pmatrix} 4 & 1 \\ 2 & 3 \end{pmatrix}.
  1. det(AλI)=det(4λ123λ)\det(A - \lambda I) = \det\begin{pmatrix} 4-\lambda & 1 \\ 2 & 3-\lambda \end{pmatrix}

    Write the characteristic equation by setting up the determinant of AλIA - \lambda I equal to zero; this finds values of λ\lambda where the matrix is singular.

  2. (4λ)(3λ)12=0(4-\lambda)(3-\lambda) - 1 \cdot 2 = 0

    Expand the 2×22 \times 2 determinant using the formula adbcad - bc.

  3. 127λ+λ22=012 - 7\lambda + \lambda^2 - 2 = 0

    Distribute and simplify the left side: (4λ)(3λ)=127λ+λ2(4-\lambda)(3-\lambda) = 12 - 7\lambda + \lambda^2.

  4. λ27λ+10=0\lambda^2 - 7\lambda + 10 = 0

    Rearrange into standard quadratic form.

  5. (λ5)(λ2)=0(\lambda - 5)(\lambda - 2) = 0

    Factor the quadratic by finding factors of 10 that sum to 7-7.

  6. λ1=5,λ2=2\lambda_1 = 5, \quad \lambda_2 = 2

    Solve each factor; the eigenvalues are 5 and 2.

  7. (A5I)v=(1122)(v1v2)=0(A - 5I)\mathbf{v} = \begin{pmatrix} -1 & 1 \\ 2 & -2 \end{pmatrix}\begin{pmatrix} v_1 \\ v_2 \end{pmatrix} = \mathbf{0}

    For λ1=5\lambda_1 = 5, substitute back into (AλI)v=0(A - \lambda I)\mathbf{v} = \mathbf{0} and solve.

  8. v1+v2=0v1=v2-v_1 + v_2 = 0 \Rightarrow v_1 = v_2

    From the first row, we see that v1v_1 and v2v_2 must be equal.

  9. v1=(11)\mathbf{v}_1 = \begin{pmatrix} 1 \\ 1 \end{pmatrix}

    Choose v1=1v_1 = 1; any nonzero scalar multiple is also an eigenvector.

  10. (A2I)v=(2121)(v1v2)=0(A - 2I)\mathbf{v} = \begin{pmatrix} 2 & 1 \\ 2 & 1 \end{pmatrix}\begin{pmatrix} v_1 \\ v_2 \end{pmatrix} = \mathbf{0}

    For λ2=2\lambda_2 = 2, substitute and solve the system.

  11. 2v1+v2=0v2=2v12v_1 + v_2 = 0 \Rightarrow v_2 = -2v_1

    From the first row, v2v_2 is 2-2 times v1v_1.

  12. v2=(12)\mathbf{v}_2 = \begin{pmatrix} 1 \\ -2 \end{pmatrix}

    Choose v1=1v_1 = 1; then v2=2v_2 = -2.

Answer: λ1=5 with v1=(11);λ2=2 with v2=(12)\lambda_1 = 5 \text{ with } \mathbf{v}_1 = \begin{pmatrix} 1 \\ 1 \end{pmatrix}; \quad \lambda_2 = 2 \text{ with } \mathbf{v}_2 = \begin{pmatrix} 1 \\ -2 \end{pmatrix}

This shows the two directions in which the matrix acts purely as a scalar multiplier: stretching by a factor of 5 in the direction (1,1)(1, 1) and by a factor of 2 in the direction (1,2)(1, -2). Every other vector is both scaled and rotated.

2. Find eigenvalues with negative eigenvalue and harder factoring

Problem

Find all eigenvalues and eigenvectors of B=(2411)B = \begin{pmatrix} 2 & 4 \\ 1 & -1 \end{pmatrix}.
  1. det(BλI)=det(2λ411λ)\det(B - \lambda I) = \det\begin{pmatrix} 2-\lambda & 4 \\ 1 & -1-\lambda \end{pmatrix}

    Set up the characteristic equation; note that this matrix will produce a negative eigenvalue, indicating reflection in addition to scaling.

  2. (2λ)(1λ)41=0(2-\lambda)(-1-\lambda) - 4 \cdot 1 = 0

    Apply the 2×22 \times 2 determinant formula adbcad - bc.

  3. 22λ+λ+λ24=0-2 - 2\lambda + \lambda + \lambda^2 - 4 = 0

    Expand the product (2λ)(1λ)=22λ+λ+λ2=λ2λ2(2-\lambda)(-1-\lambda) = -2 - 2\lambda + \lambda + \lambda^2 = \lambda^2 - \lambda - 2.

  4. λ2λ6=0\lambda^2 - \lambda - 6 = 0

    Combine like terms: 24=6-2 - 4 = -6 and 2λ+λ=λ-2\lambda + \lambda = -\lambda.

  5. (λ3)(λ+2)=0(\lambda - 3)(\lambda + 2) = 0

    Factor by finding factors of 6-6 that sum to 1-1: we need 3-3 and +2+2.

  6. λ1=3,λ2=2\lambda_1 = 3, \quad \lambda_2 = -2

    The eigenvalues are 3 and 2-2; the negative value indicates reflection.

  7. (B3I)v=(1414)(v1v2)=0(B - 3I)\mathbf{v} = \begin{pmatrix} -1 & 4 \\ 1 & -4 \end{pmatrix}\begin{pmatrix} v_1 \\ v_2 \end{pmatrix} = \mathbf{0}

    For λ1=3\lambda_1 = 3, form the system (B3I)v=0(B - 3I)\mathbf{v} = \mathbf{0}.

  8. v1+4v2=0v1=4v2-v_1 + 4v_2 = 0 \Rightarrow v_1 = 4v_2

    From the first row, v1v_1 must be 4 times v2v_2.

  9. v1=(41)\mathbf{v}_1 = \begin{pmatrix} 4 \\ 1 \end{pmatrix}

    Choose v2=1v_2 = 1 so that v1=4v_1 = 4.

  10. (B(2)I)v=(4411)(v1v2)=0(B - (-2)I)\mathbf{v} = \begin{pmatrix} 4 & 4 \\ 1 & 1 \end{pmatrix}\begin{pmatrix} v_1 \\ v_2 \end{pmatrix} = \mathbf{0}

    For λ2=2\lambda_2 = -2, form the system; note that B(2I)=B+2IB - (-2I) = B + 2I.

  11. 4v1+4v2=0v1=v24v_1 + 4v_2 = 0 \Rightarrow v_1 = -v_2

    From the first row, v1v_1 and v2v_2 must have opposite signs.

  12. v2=(11)\mathbf{v}_2 = \begin{pmatrix} 1 \\ -1 \end{pmatrix}

    Choose v1=1v_1 = 1; then v2=1v_2 = -1.

Answer: λ1=3 with v1=(41);λ2=2 with v2=(11)\lambda_1 = 3 \text{ with } \mathbf{v}_1 = \begin{pmatrix} 4 \\ 1 \end{pmatrix}; \quad \lambda_2 = -2 \text{ with } \mathbf{v}_2 = \begin{pmatrix} 1 \\ -1 \end{pmatrix}

The negative eigenvalue λ2=2\lambda_2 = -2 means that in the direction (1,1)(1, -1), the matrix scales by a factor of 2 AND reverses direction. This is why negative eigenvalues appear in systems with reflection or oscillation. The eigenvalue of 3 represents pure scaling without reversal.

3. Find eigenvalues for a word problem on cyclist power

Problem

A cyclist riding on a mountain route experiences power transfer between uphill and downhill segments modeled by R=(3113)R = \begin{pmatrix} 3 & 1 \\ 1 & 3 \end{pmatrix}, where entries represent effort coupling. Find the eigenvalues to determine the principal directions of sustained power output.
  1. det(RλI)=det(3λ113λ)\det(R - \lambda I) = \det\begin{pmatrix} 3-\lambda & 1 \\ 1 & 3-\lambda \end{pmatrix}

    Set up the characteristic equation; this matrix is symmetric, so we expect real eigenvalues.

  2. (3λ)(3λ)11=0(3-\lambda)(3-\lambda) - 1 \cdot 1 = 0

    Apply the determinant formula for a 2×22 \times 2 matrix.

  3. (3λ)21=0(3-\lambda)^2 - 1 = 0

    Notice that the diagonal entries are equal; this simplifies to (3λ)212(3-\lambda)^2 - 1^2, a difference of squares.

  4. 96λ+λ21=09 - 6\lambda + \lambda^2 - 1 = 0

    Expand (3λ)2=96λ+λ2(3-\lambda)^2 = 9 - 6\lambda + \lambda^2.

  5. λ26λ+8=0\lambda^2 - 6\lambda + 8 = 0

    Simplify by collecting constants: 91=89 - 1 = 8.

  6. (λ4)(λ2)=0(\lambda - 4)(\lambda - 2) = 0

    Factor by finding factors of 8 that sum to 6-6: we need 4-4 and 2-2.

  7. λ1=4,λ2=2\lambda_1 = 4, \quad \lambda_2 = 2

    The eigenvalues are 4 and 2, both positive since RR is symmetric positive-definite.

  8. (R4I)v=(1111)(v1v2)=0(R - 4I)\mathbf{v} = \begin{pmatrix} -1 & 1 \\ 1 & -1 \end{pmatrix}\begin{pmatrix} v_1 \\ v_2 \end{pmatrix} = \mathbf{0}

    For λ1=4\lambda_1 = 4, set up the eigenvector equation.

  9. v1+v2=0v1=v2-v_1 + v_2 = 0 \Rightarrow v_1 = v_2

    From the first row, the components must be equal.

  10. v1=(11)\mathbf{v}_1 = \begin{pmatrix} 1 \\ 1 \end{pmatrix}

    Choose v1=1v_1 = 1 and v2=1v_2 = 1; this represents equal uphill-downhill effort.

  11. (R2I)v=(1111)(v1v2)=0(R - 2I)\mathbf{v} = \begin{pmatrix} 1 & 1 \\ 1 & 1 \end{pmatrix}\begin{pmatrix} v_1 \\ v_2 \end{pmatrix} = \mathbf{0}

    For λ2=2\lambda_2 = 2, set up the eigenvector equation.

  12. v1+v2=0v1=v2v_1 + v_2 = 0 \Rightarrow v_1 = -v_2

    From the first row, the components must be opposite in sign.

  13. v2=(11)\mathbf{v}_2 = \begin{pmatrix} 1 \\ -1 \end{pmatrix}

    Choose v1=1v_1 = 1 and v2=1v_2 = -1; this represents opposite efforts on uphill versus downhill.

Answer: λ1=4 with v1=(11);λ2=2 with v2=(11)\lambda_1 = 4 \text{ with } \mathbf{v}_1 = \begin{pmatrix} 1 \\ 1 \end{pmatrix}; \quad \lambda_2 = 2 \text{ with } \mathbf{v}_2 = \begin{pmatrix} 1 \\ -1 \end{pmatrix}

The larger eigenvalue λ1=4\lambda_1 = 4 represents the most amplified direction: when the cyclist applies equal force to uphill and downhill segments in ratio 1:11:1, the total effort multiplies by 4 over the cycle. The smaller eigenvalue λ2=2\lambda_2 = 2 represents a less efficient pattern. This helps identify the most sustainable power distribution on repeated climbs.

Common mistakes

Where Eigenvalues and Eigenvectors usually goes wrong
Answer came out wrong
Computing det(aλbcdλ)\det\begin{pmatrix} a-\lambda & b \\ c & d-\lambda \end{pmatrix} by adding the diagonal terms instead: (aλ)+(dλ)(a-\lambda) + (d-\lambda).
Always use the determinant formula psqrps - qr for a 2×22 \times 2 matrix: (aλ)(dλ)bc(a-\lambda)(d-\lambda) - bc. The trace comes later when you verify your eigenvalues, not when computing the characteristic polynomial.
Treating the zero vector 0\mathbf{0} as an eigenvector for an eigenvalue.
Always check that your eigenvector is nonzero. If you get the zero vector, your calculation went wrong; go back and check whether you correctly solved (AλI)v=0(A - \lambda I)\mathbf{v} = \mathbf{0}.
Setting up det(A)=0\det(A) = 0 or det(abcd)=0\det\begin{pmatrix} a & b \\ c & d \end{pmatrix} = 0 instead of det(aλbcdλ)=0\det\begin{pmatrix} a-\lambda & b \\ c & d-\lambda \end{pmatrix} = 0.
Always form AλIA - \lambda I first, then set its determinant equal to zero. The λ\lambda terms in the resulting polynomial are what you solve for.
The mistakeWhy it is wrongThe fix
Computing det(aλbcdλ)\det\begin{pmatrix} a-\lambda & b \\ c & d-\lambda \end{pmatrix} by adding the diagonal terms instead: (aλ)+(dλ)(a-\lambda) + (d-\lambda).Students sometimes confuse the trace (sum of diagonal) with the determinant and forget that the determinant formula requires cross-multiplication: (aλ)(dλ)bc(a-\lambda)(d-\lambda) - bc, not addition.Always use the determinant formula psqrps - qr for a 2×22 \times 2 matrix: (aλ)(dλ)bc(a-\lambda)(d-\lambda) - bc. The trace comes later when you verify your eigenvalues, not when computing the characteristic polynomial.
Treating the zero vector 0\mathbf{0} as an eigenvector for an eigenvalue.While the zero vector technically satisfies A0=λ0A\mathbf{0} = \lambda\mathbf{0} for any λ\lambda, eigenvectors must be nonzero by definition—otherwise the eigenvalue is not uniquely determined and the whole concept collapses.Always check that your eigenvector is nonzero. If you get the zero vector, your calculation went wrong; go back and check whether you correctly solved (AλI)v=0(A - \lambda I)\mathbf{v} = \mathbf{0}.
Setting up det(A)=0\det(A) = 0 or det(abcd)=0\det\begin{pmatrix} a & b \\ c & d \end{pmatrix} = 0 instead of det(aλbcdλ)=0\det\begin{pmatrix} a-\lambda & b \\ c & d-\lambda \end{pmatrix} = 0.The characteristic equation must come from (AλI)v=0(A - \lambda I)\mathbf{v} = \mathbf{0}; without subtracting λI\lambda I, you compute the determinant of the original matrix, which does not give eigenvalues.Always form AλIA - \lambda I first, then set its determinant equal to zero. The λ\lambda terms in the resulting polynomial are what you solve for.

Tips and when to use something else

  • Symmetric matrices (where A=ATA = A^T) always have real eigenvalues and orthogonal eigenvectors—useful for quick error checks.
  • The sum of all eigenvalues equals the trace of AA (sum of diagonal entries), and their product equals the determinant; use this to verify that you found all eigenvalues.
  • For just solving Ax=bAx = b, don't use eigenvalues—instead apply Gaussian Elimination, which is faster and simpler for linear systems.
  • Eigenvector scaling does not matter: if v\mathbf{v} is an eigenvector for eigenvalue λ\lambda, then so is 5v5\mathbf{v} or any nonzero scalar multiple.

Frequently asked questions

How do I find eigenvectors once I have the eigenvalues?
For each eigenvalue λ\lambda, solve (AλI)v=0(A - \lambda I)\mathbf{v} = \mathbf{0} by row reduction or inspection. The solution set (the null space) gives you all eigenvectors for that eigenvalue. Pick any nonzero vector from that null space.
Why do I need both eigenvalues and eigenvectors?
Eigenvalues tell you the strength of transformation (the scaling factor); eigenvectors tell you the direction in which that scaling happens. Together they reveal how the matrix acts on preferred directions, essential for diagonalization, stability analysis, and solving systems of differential equations.
Can a matrix have no real eigenvalues?
Yes. A rotation matrix like (0110)\begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix} (a 90° rotation) has only complex eigenvalues, because rotating a vector always changes its direction for every direction—no vector is merely scaled.
What does it mean if I get a repeated eigenvalue?
A repeated eigenvalue (where the same value appears more than once in the characteristic polynomial) can mean the eigenvector space has fewer dimensions than expected. You may find fewer linearly independent eigenvectors than the multiplicity of that eigenvalue, a situation called defect or deficiency.

Need a different method?

The full solver is not scoped to one formula — type any problem and it will pick the method.

Open the math solver

Reviewed 2026-09-18