Primary Tool
Math Workspace (CAS)
CAS is the right tool because the page can move from eigenvalue computation to matrix reconstruction without splitting the work across separate tools.
Problem
Diagonalize and use the result to express .
This is an important worked example because it turns the abstract definition of eigenvectors into a practical matrix factorization.
Why becomes manageable
Once you have , repeated multiplication gives . The hard work is all front-loaded into finding the eigenstructure once.
For a diagonal matrix, taking powers is immediate: every diagonal entry is raised to the th power independently.
Step-by-step walkthrough
The purpose of the computation is not just to find eigenvalues. It is to reorganize the matrix into coordinates where repeated multiplication is easy.
- 1Find the eigenvalues of , which are and .
- 2For each eigenvalue, solve to get an eigenvector. One convenient choice is for and for .
- 3Place the eigenvectors into the matrix and place the eigenvalues on the diagonal of .
- 4Check that by multiplying the three matrices back together.
- 5Use the factorization to write .
- 6Because is diagonal, compute by raising each diagonal entry independently: .
Common Pitfall
Diagonalization is not just renaming the matrix. It rewrites the problem so that powers of come from powers of the diagonal entries of .
Try a Variation
Try a matrix with repeated eigenvalues. When does diagonalization fail, and what part of the construction breaks?
Related Pages
Keep moving through the cluster
What eigenvectors and eigenvalues mean geometrically
An eigenvector is a direction that survives a linear transformation without rotating away from its own line. The eigenvalue tells you the scale and possible sign flip along that direction.
Open explanation →
Proof that eigenvectors for distinct eigenvalues are linearly independent
Distinct eigenvalues do more than label eigenspaces. They force eigenvectors to be independent, which is exactly why diagonalization becomes possible so often in practice.
Open proof →
Compute eigenvalues and eigenvectors of a matrix
A first serious 3 by 3 eigenproblem should show new structure without burying the point in arithmetic. This one does that: you see the characteristic polynomial, the eigenspaces, and the diagonalization test in one pass.
Open worked example →
What a basis does in linear algebra
A basis is what turns a vector space into something you can navigate. It reaches every vector, and it does so without redundancy, so coordinates become possible.
Open explanation →