Hermitian Matrices
The conjugate transpose
Before defining Hermitian matrices, recall the conjugate transpose (also called the adjoint or dagger) of a matrix. Given a matrix with entries , its conjugate transpose is the matrix whose entry is — the complex conjugate of the entry at position in the original. In two steps: transpose the matrix (swap rows and columns), then take the complex conjugate of every entry.
For a concrete example,
Definition of a Hermitian matrix
A square matrix is Hermitian (sometimes called self-adjoint) if it equals its own conjugate transpose:
Entry by entry this means for every pair of indices and . Two immediate consequences follow from this single equation:
- Diagonal entries are real. Setting gives , which forces .
- Off-diagonal entries come in conjugate pairs. The entry above the diagonal at position is the complex conjugate of the entry below the diagonal at .
A simple Hermitian matrix therefore has the form
Why Hermitian matrices matter in quantum mechanics
In quantum mechanics every observable — every measurable physical quantity such as energy, momentum, or spin — is represented by a Hermitian operator. Three reasons make Hermitian operators the right choice:
Real eigenvalues. If is Hermitian and , then . The proof is a one-liner using the inner product:
Since , it follows that , so is real. This is physically necessary: measurement outcomes must be real numbers.
Orthogonal eigenstates. Eigenvectors of a Hermitian matrix that correspond to different eigenvalues are orthogonal. This allows the eigenstates to form a complete orthonormal basis for the Hilbert space — the set of possible outcomes of a measurement forms a well-defined sample space.
Spectral theorem. Every Hermitian matrix on a finite-dimensional space is diagonalisable by a unitary matrix: , where is real diagonal. This guarantees that the eigenstates of any observable provide a complete description of the system.
A worked example
Consider the matrix
Diagonal entries: and . Both are real.
Off-diagonal pair: and . The complex conjugate of is , which equals . The condition is satisfied.
Because every condition holds, is Hermitian: .
As a check, the eigenvalues of must be real. The characteristic polynomial is
The discriminant is , so both eigenvalues are real: .
Non-example
The matrix
is not Hermitian because is not real. Observables are never represented by such matrices.
Try it
This is a logical exercise — your code should return a boolean, not a circuit. The matrix
from the worked example above has entries , , ,
. Is Hermitian?
Sign in on the full site to ask questions and join the discussion.