Addition of Angular Momentum
Composite quantum systems carry angular momentum in pieces: orbital plus spin, electron plus nucleus, two spins in a molecule, or two outgoing particles in a collision. The total angular momentum basis is often the basis in which rotationally invariant Hamiltonians become simple.
Sakurai treats angular-momentum addition through tensor products, coupled bases, and Clebsch-Gordan coefficients. Ballentine connects the same decomposition to irreducible representations and tensor operators. The Gottfried-named notes derive common low-dimensional coefficients explicitly. Schiff's central-potential and atomic notation uses the resulting quantum numbers heavily, especially in spectroscopic language.
Definitions
For two angular momenta and acting on different Hilbert spaces,
The uncoupled basis is
It diagonalizes . The coupled basis is
often shortened to when and are fixed. It diagonalizes
The allowed total angular momenta are
The total projection is
Clebsch-Gordan coefficients are the change-of-basis amplitudes:
Key results
The dimensions match:
This is a useful check on any decomposition.
For two spin-1/2 systems, the tensor product splits as
The triplet states are
and
The singlet state is
The singlet is rotationally invariant up to phase and has total spin zero. It is also the basic state behind many EPR-Bell spin-correlation discussions.
For spin-orbit coupling, a common Hamiltonian term is
Using
one gets
Thus the coupled basis diagonalizes spin-orbit interactions. This is why atomic fine structure is labeled by rather than only .
Visual
| Coupling | Total values | Dimension check | Common use |
|---|---|---|---|
| two spins, singlet/triplet | |||
| p electron plus spin | |||
| spin-orbit splitting |
Worked example 1: Deriving the two-spin singlet and triplet
Problem. Add two spin-1/2 particles and construct the coupled states.
Method.
- The highest state is unique:
- Lower it with
- Since
we get
- The ladder formula also says
- Therefore
- The other normalized combination must be orthogonal:
Checked answer. The symmetric state belongs to , while the antisymmetric one belongs to .
Worked example 2: Spin-orbit energy for l = 1 and s = 1/2
Problem. For , compute the energy shift for , , and or .
Method.
- Use
- Replace each square by its eigenvalue:
- For ,
- For ,
- For ,
Thus
- For ,
so
Checked answer. The splitting between the two levels is .
Code
from fractions import Fraction
def spin_orbit_shift(l, s, j, A=1):
return Fraction(A, 2) * (j * (j + 1) - l * (l + 1) - s * (s + 1))
l = Fraction(1, 1)
s = Fraction(1, 2)
for j in [Fraction(3, 2), Fraction(1, 2)]:
print(j, spin_orbit_shift(l, s, j))
Common pitfalls
- Adding values correctly but forgetting that has restricted ranges.
- Treating uncoupled and coupled bases as different systems. They are different bases in the same tensor-product space.
- Missing normalization when symmetric and antisymmetric combinations are formed.
- Losing phase conventions. Clebsch-Gordan coefficients are convention-dependent in sign, though physical predictions are not.
- Assuming is diagonal in the uncoupled basis. It is diagonal in the coupled basis.
- Forgetting the dimension check. If the multiplet dimensions do not add up, the coupling list is wrong.
- Confusing exchange symmetry with angular-momentum coupling. They interact strongly for identical particles, but they are conceptually distinct.
The main strategy for angular-momentum addition is to start from the highest-weight state. The state with is unique, so it must belong to . Repeated application of the total lowering operator generates that entire multiplet. Any states left over at the same values must be orthogonal combinations belonging to smaller . This constructive method explains where Clebsch-Gordan coefficients come from, rather than treating tables as magic.
The uncoupled and coupled bases answer different physical questions. If a magnetic field couples separately to and , the uncoupled basis may be natural. If the Hamiltonian contains , the coupled basis is natural because diagonalizes the dot product. Spectroscopic notation is built around choosing the basis that diagonalizes the largest part of the Hamiltonian, then treating smaller terms as perturbations.
Phase conventions are unavoidable. Most physics texts use the Condon-Shortley convention, but signs can differ if a basis state is defined with a different phase. A single Clebsch-Gordan coefficient sign is not directly observable; relative signs inside a state matter because they affect interference and matrix elements. When combining coefficients from different tables or software libraries, verify the convention before comparing components.
Addition of angular momentum also connects to identical-particle constraints. For two identical spin-1/2 fermions, the spin singlet is antisymmetric and the spin triplet is symmetric. The spatial wave function must compensate so that the total state is antisymmetric. This is why helium, molecular hydrogen, and two-nucleon systems use both angular-momentum coupling and exchange symmetry in the same calculation.
When solving homework-style coupling problems, write down the full uncoupled dimension before doing anything else. Then list the possible values and their dimensions. Only after the dimension count works should you compute coefficients. This prevents common errors such as missing the multiplet or inventing an extra state with an impossible . For low-dimensional cases, laddering and orthogonality are usually faster and more reliable than searching a table.
In atomic notation, remember that different coupling schemes may be appropriate in different physical regimes. Weak spin-orbit coupling suggests coupling, where orbital angular momenta combine, spins combine, and then total is formed. Stronger relativistic effects may favor coupling, where each electron's and first combine to an individual . The underlying Hilbert space is the same, but the useful basis changes with the dominant Hamiltonian.
As a check on any coupled state, verify three things: it has the advertised , it is normalized, and it is orthogonal to other states with the same but different . These tests catch nearly every arithmetic error in hand-built Clebsch-Gordan states. If a Hamiltonian is rotationally invariant, states with the same but different should remain degenerate unless another interaction selects an axis.
This makes angular-momentum addition both a computational method and a symmetry audit.