An eigenvalue equation asks a sharp question of an operator: is there a direction the operator leaves
unchanged except for stretching? Those special directions — eigenvectors — and their stretch
factors — eigenvalues — are where the physics lives. The possible outcomes of a measurement are
the eigenvalues of the observable, and the states that give a definite outcome are its eigenvectors.
The equation
A nonzero vector ∣v⟩ is an eigenvector of the operator A with eigenvalueλ
if
A∣v⟩=λ∣v⟩.
Applying A does not rotate ∣v⟩ into a new direction; it merely scales it by the number
λ (possibly complex). We exclude ∣v⟩=0, which would satisfy the equation trivially
for any λ and tell us nothing. Note that if ∣v⟩ is an eigenvector, so is any nonzero
multiple c∣v⟩ — eigenvectors come as whole directions (one-dimensional subspaces, or larger
if the eigenvalue is degenerate).
Finding eigenvalues: the characteristic equation
Rewrite the equation as (A−λ1)∣v⟩=0. A nonzero solution ∣v⟩ exists
precisely when the operator A−λ1 is not invertible, which happens when its
determinant vanishes:
det(A−λ1)=0.
This is the characteristic equation, a polynomial of degree n in λ for an n×n
matrix. Its roots are the eigenvalues.
For a 2×2 matrix A=(acbd), expanding the determinant
gives the compact form
λ2−(trAa+d)λ+(detAad−bc)=0,
so the two eigenvalues are
λ±=2trA±(trA)2−4detA.
A useful built-in check: the eigenvalues always satisfy λ++λ−=trA
and λ+λ−=detA.
Worked example
Take the real symmetric matrix
A=(3113).
Here trA=6 and detA=9−1=8, so the characteristic equation is
λ2−6λ+8=0=(λ−4)(λ−2). The eigenvalues are λ+=4 and
λ−=2, both real — as guaranteed for a Hermitian (here symmetric) operator. Their sum is
6=trA and product is 8=detA, confirming the answer.
Finding the eigenvectors
Once an eigenvalue is known, solve the linear system (A−λ1)∣v⟩=0. For
λ+=4,
A−41=(−111−1),
and the equation −v1+v2=0 forces v1=v2. A normalized eigenvector is
∣v+⟩=21(11). For λ−=2 the same
method gives ∣v−⟩=21(1−1). The two
eigenvectors are orthogonal, as they must be for distinct eigenvalues of a Hermitian operator.
Try it
Solve A∣v⟩=λ∣v⟩ for A=(3113) using the
trace–determinant formula, and return the larger of the two eigenvalues.
Run your code to see the quantum state.
Sign in on the full site to ask questions and join the discussion.