|q⟩ Bad Qubits

intermediate · Physics · Operators, Eigenvalues & Spectral Theorem

Hermitian Operators

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 AA is Hermitian (or self-adjoint in finite dimensions) if it equals its own adjoint:

A=A.A = A^\dagger.

In terms of matrix elements in any orthonormal basis, using (A)ij=Aji(A^\dagger)_{ij} = \overline{A_{ji}} from the previous lesson, this reads

Aij=Ajifor all i,j.A_{ij} = \overline{A_{ji}} \qquad \text{for all } i, j.

Two immediate consequences of this symmetry:

For example,

A=(21i1+i3)A = \begin{pmatrix} 2 & 1-i \\ 1+i & 3 \end{pmatrix}

is Hermitian: the diagonal is real, and 1+i=1i\overline{1+i} = 1-i matches the reflected entry. The three Pauli matrices X,Y,ZX, Y, Z are all Hermitian, as is the identity.

Hermitian operators have real eigenvalues

This is the property that makes them physical. Suppose Aψ=λψA|\psi\rangle = \lambda|\psi\rangle with ψ0|\psi\rangle \neq 0. Take the inner product with ψ\langle\psi|:

ψAψ=λψψ.\langle\psi|A|\psi\rangle = \lambda\,\langle\psi|\psi\rangle.

Now take the complex conjugate of the left side. Using ψAψ=ψAψ\langle\psi|A|\psi\rangle = \overline{\langle\psi|A^\dagger|\psi\rangle} and A=AA^\dagger = A,

ψAψ=ψAψ=ψAψ,\overline{\langle\psi|A|\psi\rangle} = \langle\psi|A^\dagger|\psi\rangle = \langle\psi|A|\psi\rangle,

so ψAψ\langle\psi|A|\psi\rangle is real. Since ψψ>0\langle\psi|\psi\rangle > 0 is also real and positive, λ=ψAψ/ψψ\lambda = \langle\psi|A|\psi\rangle / \langle\psi|\psi\rangle is real. Every eigenvalue of a Hermitian operator is real.

Eigenvectors for distinct eigenvalues are orthogonal

A second key fact: if Aψ=λψA|\psi\rangle = \lambda|\psi\rangle and Aϕ=μϕA|\phi\rangle = \mu|\phi\rangle with λμ\lambda \neq \mu (both real), then ϕψ=0\langle\phi|\psi\rangle = 0. Compute ϕAψ\langle\phi|A|\psi\rangle two ways:

ϕAψ=λϕψ,ϕAψ=Aϕψ=μϕψ,\langle\phi|A|\psi\rangle = \lambda\,\langle\phi|\psi\rangle, \qquad \langle\phi|A|\psi\rangle = \langle A\phi|\psi\rangle = \mu\,\langle\phi|\psi\rangle,

where the second line uses A=AA = A^\dagger and the reality of μ\mu. Subtracting, (λμ)ϕψ=0(\lambda - \mu) \langle\phi|\psi\rangle = 0, and since λμ\lambda \neq \mu we conclude ϕψ=0\langle\phi|\psi\rangle = 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=AA^\top = 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=(21i1+i3)A = \begin{pmatrix} 2 & 1-i \\ 1+i & 3 \end{pmatrix} is Hermitian by checking Aij=AjiA_{ij} = \overline{A_{ji}} 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.