Example
Solve the characteristic quadratic. The eigenvalues of a matrix are the numbers for which the matrix, minus that value times the identity, becomes singular, and setting that determinant to zero gives the characteristic equation. For a two-by-two matrix this is a quadratic whose roots are the eigenvalues, the special scaling factors along the matrix's own directions.
highlighted = computed this step
Step 1 — Set up
Set up the given matrix data.
A=[4213]
Step 2 — Trace and determinant
Record trace and determinant: 7,10.
trdet=(7,10)
Step 3 — Solve quadratic
Solve the quadratic roots: 2,5.
roots=(2,5)
Step 4 — Eigenvalues
The eigenvalues are 2 and 5.
λ=2,5
eigenvalue
A scalar λ is an eigenvalue of A if Av = λv for some nonzero vector v. Eigenvalues are roots of the characteristic polynomial det(A - λI) = 0.