Eigenvalues and Eigenvectors

April 13, 2026

Problem

Find the eigenvalues and eigenvectors of A = [[4,1],[2,3]]. Show that eigenvectors only scale (they are not rotated) under A.

Explanation

Definition

An eigenvector of a square matrix AA is a non-zero vector v\mathbf{v} that is only stretched by AA, not rotated: Av=λvA \mathbf{v} = \lambda \mathbf{v}

The scalar λ\lambda is the corresponding eigenvalue — it tells you by how much the direction v\mathbf{v} is stretched. Eigenvalues can be positive, negative, zero, or complex.

Finding them — the two-step recipe

  1. Eigenvalues: solve det(AλI)=0\det(A - \lambda I) = 0 (the characteristic equation).
  2. Eigenvectors: for each λ\lambda, find a non-zero v\mathbf{v} in Null(AλI)\operatorname{Null}(A - \lambda I).

Step-by-step

A=(4123)A = \begin{pmatrix} 4 & 1 \\ 2 & 3 \end{pmatrix}

Step 1 — Characteristic equation. det(AλI)=det(4λ123λ)=(4λ)(3λ)(1)(2)\det(A - \lambda I) = \det \begin{pmatrix} 4 - \lambda & 1 \\ 2 & 3 - \lambda \end{pmatrix} = (4 - \lambda)(3 - \lambda) - (1)(2) =λ27λ+122=λ27λ+10=0= \lambda^2 - 7\lambda + 12 - 2 = \lambda^2 - 7\lambda + 10 = 0

Step 2 — Solve for λ\lambda. λ=7±49402=7±32\lambda = \dfrac{7 \pm \sqrt{49 - 40}}{2} = \dfrac{7 \pm 3}{2} λ1=5,λ2=2\lambda_1 = 5, \quad \lambda_2 = 2

Step 3 — Eigenvector for λ1=5\lambda_1 = 5.

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

Both rows give v1=v2v_1 = v_2. So v1=(1,1)\mathbf{v}_1 = (1, 1) (any non-zero scalar multiple works).

Verify: A(1,1)T=(4+1,2+3)T=(5,5)T=5(1,1)TA (1, 1)^T = (4 + 1, 2 + 3)^T = (5, 5)^T = 5 \cdot (1, 1)^T

Step 4 — Eigenvector for λ2=2\lambda_2 = 2.

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

Row: 2v1+v2=0    v2=2v12 v_1 + v_2 = 0 \implies v_2 = -2 v_1. So v2=(1,2)\mathbf{v}_2 = (1, -2).

Verify: A(1,2)T=(42,26)T=(2,4)T=2(1,2)TA (1, -2)^T = (4 - 2, 2 - 6)^T = (2, -4)^T = 2 \cdot (1, -2)^T

Eigenpairs summary

(λ1,v1)=(5,(1,1)),(λ2,v2)=(2,(1,2))\boxed{(\lambda_1, \mathbf{v}_1) = (5, (1, 1)), \quad (\lambda_2, \mathbf{v}_2) = (2, (1, -2))}

Geometric picture

AA acts on the plane:

  • Along the direction (1,1)(1, 1) — the 45° line — vectors are stretched by factor 5.
  • Along the direction (1,2)(1, -2) — a different line — vectors are stretched by factor 2.
  • Other directions are a mix of these two "modes" and get rotated as well as scaled.

Eigenvectors reveal the axes of the transformation, where it behaves purely as a stretch.

Why eigenstuff matters

  • Diagonalization: A=PDP1A = P D P^{-1} where DD has eigenvalues on the diagonal. Makes AnA^n easy to compute.
  • Principal component analysis (PCA): principal components are eigenvectors of the covariance matrix.
  • Stability analysis: eigenvalues of the Jacobian tell you whether a fixed point is stable.
  • Quantum mechanics: observables are operators; measurement values are eigenvalues.
  • PageRank, Markov chains: the steady state is an eigenvector (with eigenvalue 1) of the transition matrix.

Key properties

  • Trace = sum of eigenvalues: tr(A)=λ1+λ2\operatorname{tr}(A) = \lambda_1 + \lambda_2. Here: 4+3=7=5+24 + 3 = 7 = 5 + 2
  • Determinant = product of eigenvalues: detA=λ1λ2\det A = \lambda_1 \lambda_2. Here: 122=10=5212 - 2 = 10 = 5 \cdot 2
  • Eigenvalues of AkA^k: λik\lambda_i^k with the same eigenvectors.
  • Eigenvalues of A1A^{-1}: 1/λi1/\lambda_i (when all λi0\lambda_i \ne 0).
  • Complex eigenvalues on a real matrix come in conjugate pairs.

Common mistakes

  • Including zero as an eigenvector — by definition, the zero vector is not allowed. Any non-zero multiple of a valid eigenvector is fine.
  • Forgetting to check both roots. The characteristic polynomial may have repeated or complex roots.
  • Confusing "eigenvector" with "pivot column." They're different concepts.

Try it in the visualization

Draw the column vectors of AA as an arrow diagram. Overlay the two eigenvector directions as dashed lines. As x\mathbf{x} sweeps around the unit circle, watch the output AxA \mathbf{x} align with each eigendirection.

Interactive Visualization

Parameters

4.00
1.00
2.00
3.00
Your turn

Got your own math or physics problem?

Turn any problem into an interactive visualization like this one — powered by AI, generated in seconds. Free to try, no credit card required.

Sign Up Free to Try It30 free visualizations every day
Eigenvalues and Eigenvectors | MathSpin