MethodMath
Ask
Join
HomeTopicsAskAlerts
Profile

© 2026 MethodMath. Built for mathematical knowledge sharing.

AboutContactGuidelinesPrivacyTermsCookies
James Chen
May 16, 2026

How to find eigenvalues and eigenvectors of a 3x3 matrix?

I can handle 2×22 \times 22×2 matrices, but finding eigenvalues of a 3×33 \times 33×3 matrix is more challenging. For example:

A=(210121012)A = \begin{pmatrix} 2 & 1 & 0 \\1 & 2 & 1 \\0 & 1 & 2 \end{pmatrix}A=​210​121​012​​

I need to:

  1. Find the characteristic polynomial det⁡(A−λI)=0\det(A - \lambda I) = 0det(A−λI)=0
  2. Solve the cubic equation
  3. Find eigenvectors for each eigenvalue

What are good strategies for finding the characteristic polynomial efficiently? Are there any tricks to avoid expanding the determinant fully?

1 answers760 views

1 Answer

0
Sarah Mitchell
May 16, 2026
Accepted
For the matrix: $$A = \begin{pmatrix} 2 & 1 & 0 \\ 1 & 2 & 1 \\ 0 & 1 & 2 \end{pmatrix}$$ Step 1: Compute $A - \lambda I$: $$\begin{pmatrix} 2-\lambda & 1 & 0 \\ 1 & 2-\lambda & 1 \\ 0 & 1 & 2-\lambda \end{pmatrix}$$ Step 2: Compute determinant. For a tridiagonal matrix, expansion along the first row gives: $$\det = (2-\lambda)\begin{vmatrix} 2-\lambda & 1 \\ 1 & 2-\lambda \end{vmatrix} - 1\begin{vmatrix} 1 & 1 \\ 0 & 2-\lambda \end{vmatrix}$$ $$= (2-\lambda)[(2-\lambda)^2 - 1] - 1[(2-\lambda) - 0]$$ $$= (2-\lambda)(\lambda^2 - 4\lambda + 3) - (2-\lambda)$$ $$= (2-\lambda)(\lambda^2 - 4\lambda + 2)$$ Step 3: Solve $(2-\lambda)(\lambda^2 - 4\lambda + 2) = 0$, giving: $$\lambda = 2, \quad \lambda = 2 \pm \sqrt{2}$$ Step 4: Find eigenvectors by solving $(A - \lambda I)\mathbf{v} = 0$ for each eigenvalue. **Trick:** For symmetric tridiagonal matrices like this, there's a pattern: eigenvalues are $\lambda_k = 2 + 2\cos\left(\frac{k\pi}{n+1}\right)$ for $k = 1, \ldots, n$, where $n = 3$. So $\lambda_k = 2 + 2\cos(k\pi/4)$, giving $2 + \sqrt{2}, 2, 2 - \sqrt{2}$.
Still unsure? Join to comment or ask a follow-up.
Login or Register to post your answer

Suggested questions

How to solve a linear programming problem using the simplex method?

2956

What is the geometric interpretation of the determinant of a matrix?

1883

What is the Central Limit Theorem and why does it matter?

1822

Why does 0 factorial equal 1 instead of 0? Simple proof

31.4k

Does the Banach-Steinhaus theorem hold for non-complete normed spaces?

31.1k