Of all the operator families in quantum mechanics, Hermitian operators are the ones you measure.
Every physical observable — energy, position, momentum, spin component — is represented by a
Hermitian operator, and the reason is a single clean theorem: Hermitian operators have real
eigenvalues. Measurement outcomes are real numbers, so the operators that produce them must be
Hermitian.
Definition
An operator A is Hermitian (or self-adjoint in finite dimensions) if it equals its own
adjoint:
A=A†.
In terms of matrix elements in any orthonormal basis, using (A†)ij=Aji
from the previous lesson, this reads
Aij=Ajifor all i,j.
Two immediate consequences of this symmetry:
The diagonal entries are real. Setting i=j gives Aii=Aii, which forces
Aii to be real.
Off-diagonal entries are conjugate-reflections across the diagonal: Aij and Aji are
complex conjugates of one another.
For example,
A=(21+i1−i3)
is Hermitian: the diagonal is real, and 1+i=1−i matches the reflected entry. The three
Pauli matrices X,Y,Z are all Hermitian, as is the identity.
Hermitian operators have real eigenvalues
This is the property that makes them physical. Suppose A∣ψ⟩=λ∣ψ⟩ with
∣ψ⟩=0. Take the inner product with ⟨ψ∣:
⟨ψ∣A∣ψ⟩=λ⟨ψ∣ψ⟩.
Now take the complex conjugate of the left side. Using ⟨ψ∣A∣ψ⟩=⟨ψ∣A†∣ψ⟩ and A†=A,
⟨ψ∣A∣ψ⟩=⟨ψ∣A†∣ψ⟩=⟨ψ∣A∣ψ⟩,
so ⟨ψ∣A∣ψ⟩ is real. Since ⟨ψ∣ψ⟩>0 is also real and positive,
λ=⟨ψ∣A∣ψ⟩/⟨ψ∣ψ⟩ is real. Every eigenvalue of a
Hermitian operator is real.
Eigenvectors for distinct eigenvalues are orthogonal
A second key fact: if A∣ψ⟩=λ∣ψ⟩ and A∣ϕ⟩=μ∣ϕ⟩ with
λ=μ (both real), then ⟨ϕ∣ψ⟩=0. Compute ⟨ϕ∣A∣ψ⟩
two ways:
⟨ϕ∣A∣ψ⟩=λ⟨ϕ∣ψ⟩,⟨ϕ∣A∣ψ⟩=⟨Aϕ∣ψ⟩=μ⟨ϕ∣ψ⟩,
where the second line uses A=A† and the reality of μ. Subtracting, (λ−μ)⟨ϕ∣ψ⟩=0, and since λ=μ we conclude ⟨ϕ∣ψ⟩=0.
Eigenstates with different eigenvalues are automatically orthogonal — the seed of the spectral
theorem two lessons ahead.
Hermitian versus symmetric
Over the real numbers, "Hermitian" reduces to symmetric (A⊤=A): there is nothing to
conjugate. The conjugation only does work for complex matrices. A real symmetric matrix is therefore
a special case of a Hermitian matrix, which is why real-valued classical problems (vibrations,
networks) inherit the same real-spectrum, orthogonal-eigenvector structure.
Try it
Decide whether the operator A=(21+i1−i3) is Hermitian by
checking Aij=Aji for every entry. Return a boolean.
Run your code to see the quantum state.
Sign in on the full site to ask questions and join the discussion.