Courses / Business I
Mathematics I

Eigenvalues and Eigenvectors

Business I 368 words Free to read

The Directions a Matrix Cannot Bend

Apply a matrix to most vectors and they rotate and stretch. But some special directions only get scaled — the matrix cannot bend them off their line. These are the eigenvectors, and their scaling factors are the eigenvalues:

Av=λv,v0Av = \lambda v, \qquad v \ne 0

Finding them: rewrite as (AλI)v=0(A - \lambda I)v = 0. A nonzero solution vv exists only if AλIA - \lambda I is singular — a determinant question again:

det(AλI)=0\det(A - \lambda I) = 0

This is the characteristic polynomial; its roots are the eigenvalues. For each root, solving (AλI)v=0(A-\lambda I)v = 0 yields the eigenspace — the full line (or plane) of eigenvectors sharing that λ\lambda.

For a triangular matrix the eigenvalues sit conveniently on the diagonal. And two checksums catch errors: the eigenvalues sum to the trace and multiply to the determinant.

Why business cares — dynamics. Many systems evolve by repeated multiplication: market shares next month = MM \cdot shares this month; a customer-loyalty transition table applied year after year. After many steps, the state aligns with the dominant eigenvector (largest λ|\lambda|), and the eigenvalue dictates the fate:

λ>1:explosive growthλ<1:decayλ=1:steady state|\lambda| > 1: \text{explosive growth} \qquad |\lambda| < 1: \text{decay} \qquad \lambda = 1: \text{steady state}

A Markov market-share matrix always has λ=1\lambda = 1; its eigenvector is the long-run market share — the split the market drifts to no matter where it starts. Google's PageRank is exactly this: the web's dominant eigenvector.

Eigenvalues are the matrix's tempo markings: they tell you not what happens in one step, but what the repetition of that step converges to.

The eigen-recipe

StepEquationYields
1. Characteristic polynomialdet(AλI)=0\det(A - \lambda I) = 0The eigenvalues λ\lambda
2. Solve (AλI)v=0(A-\lambda I)v = 0For each λ\lambdaThe eigenspace of vv's
Check: traceλi=tr(A)\sum \lambda_i = tr(A)Fast error detection
Check: determinantλi=detA\prod \lambda_i = \det AFast error detection
Tip: Always run both checks — the eigenvalues must sum to the trace and multiply to the determinant. Thirty seconds of verification catches nearly every root-finding slip.

Practise this lesson

The explanation above is free to read. The graded practice for this lesson lives in the Tryals app.

13practice questions
2interactive scenes
Start Business I free

Mathematics I