1. Find eigenvalues of an upper triangular matrix
Problem
We form by subtracting from each diagonal entry.
For a 2×2 matrix, the determinant is (top-left)(bottom-right) minus (top-right)(bottom-left).
Expanding: , , .
Set the characteristic polynomial equal to zero.
Factor by finding two numbers that multiply to 6 and add to : these are and .
Each factor gives one eigenvalue.
Answer:
For upper triangular matrices (all entries below the diagonal are zero), the eigenvalues are exactly the diagonal entries—this is a special property that makes computation fast. Here we see it confirmed: the diagonal holds 2 and 3, matching our eigenvalues.