Particle Physics
Pair Production
Turning a photon into matter and antimatter
Pair production is the conversion of a high-energy photon into a particle and its antiparticle — almost always an electron and a positron — in the field of a nearby nucleus. The photon vanishes, and its energy reappears as two real particles with mass, a direct demonstration of E = mc². It requires at least 1.022 MeV (twice the electron rest mass), it is the dominant way gamma rays above a few MeV lose energy in matter, and its time-reverse — annihilation — powers PET scanners.
- Threshold energy (in nuclear field)2 m_e c² = 1.022 MeV
- Electron rest-mass energym_e c² = 0.511 MeV
- Threshold in electron field (triplet)4 m_e c² = 2.044 MeV
- Cross-section scalingσ ∝ Z² · ln(E) at high energy
- Annihilation photon energy2 × 0.511 MeV, back-to-back
- Predicted / first seenDirac 1928–31 · Anderson 1932 (positron)
Interactive visualization
Press play, or step through manually. The visualization is yours to drive — try it before reading on.
Watch the 60-second explainer
A condensed visual walkthrough — narrated, captioned, under a minute.
What pair production is
Pair production is the cleanest illustration in all of physics that energy and mass are interchangeable. A single photon — a packet of pure electromagnetic energy with no rest mass and no charge — travels into the electric field surrounding an atomic nucleus, and there it disappears. In its place appear two brand-new particles: an electron and its antimatter twin, the positron. The light is gone; matter has taken its place.
The bookkeeping is set entirely by Einstein's relation between energy and mass:
E = mc²
The photon's energy E = hf is spent first on manufacturing the rest masses of the two particles, and whatever is left over becomes their kinetic energy. An electron and a positron have identical mass, so the minimum photon energy needed — the threshold energy — is twice the electron rest-mass energy:
E_threshold = 2 m_e c² = 2 × 0.511 MeV = 1.022 MeV
A photon carrying less than 1.022 MeV cannot make an electron-positron pair under any circumstances; it has to interact some other way (Compton scattering, photoelectric absorption). A photon carrying more than threshold can make the pair, and the excess energy is shared as kinetic energy between the electron and positron:
E_photon = 2 m_e c² + KE_electron + KE_positron
Why a nucleus has to be there
The most surprising rule of pair production is that it cannot happen in empty space. A lone photon flying through vacuum will never spontaneously turn into a pair, no matter how energetic it is. The reason is momentum.
A photon of energy E carries momentum p = E/c — quite a lot of it. Consider creating a pair right at threshold (1.022 MeV), where the electron and positron are produced essentially at rest with negligible kinetic energy. That pair has nearly zero total momentum. But the photon that made them carried momentum E/c ≠ 0. Energy can be conserved, but momentum cannot — there is nowhere for the photon's momentum to go.
The fix is a third body. When the conversion happens inside the Coulomb field of a heavy nucleus, the nucleus recoils and carries away the leftover momentum. Because the nucleus is thousands of times more massive than an electron, it can absorb a large momentum while taking almost no kinetic energy (KE ≈ p²/2M is tiny when M is huge). Energy and momentum balance simultaneously, and the reaction proceeds:
γ + nucleus → e⁻ + e⁺ + nucleus (recoiling)
This is why the probability of pair production depends so steeply on the nuclear charge Z. The interaction is driven by the nucleus's Coulomb field, whose strength scales with the number of protons, and the cross-section grows roughly as Z². That is precisely why lead (Z = 82) and tungsten (Z = 74) are the materials of choice for gamma-ray shielding and for the converters in particle detectors.
Pair production off an electron (triplet production)
A photon can also create a pair in the field of an atomic electron rather than the nucleus. Because the recoil partner — an electron — is light, it gets kicked hard and flies off with significant energy. The result is three visible tracks instead of two: the original atomic electron plus the newly created electron and positron. This is called triplet production.
Conserving momentum off a light electron is harder, so the threshold is higher — four electron masses instead of two:
E_threshold (triplet) = 4 m_e c² = 2.044 MeV
Triplet production scales with Z (one factor, for the number of electrons) rather than Z², so in high-Z materials it is a small correction to nuclear-field pair production. In hydrogen, where Z = 1, the two contribute comparably.
How it fits among photon-matter interactions
Pair production is one of three ways a photon can interact with matter, and which one dominates depends almost entirely on the photon's energy and the material's atomic number.
| Process | What happens | Energy range where it dominates | Z-dependence |
|---|---|---|---|
| Photoelectric effect | Photon fully absorbed; a bound electron is ejected | < ~100 keV | ~Z⁴–Z⁵ |
| Compton scattering | Photon scatters off an electron, losing part of its energy | ~100 keV – few MeV | ~Z (per atom) |
| Pair production | Photon converts to an e⁻e⁺ pair near a nucleus | > ~5–10 MeV | ~Z² |
The three processes carve up the energy axis. Below roughly 1 MeV no pair can form at all (we are under threshold). Between 1.022 MeV and a few MeV, pair production is allowed but Compton scattering is still more likely. Above about 5–10 MeV — sooner in heavy materials, later in light ones — pair production becomes the overwhelmingly dominant way a gamma ray loses its energy. In lead, the crossover where pair production overtakes Compton is near 5 MeV; in water and tissue it is closer to 25 MeV.
Worked numbers
| Scenario | Result |
|---|---|
| Minimum photon energy to make a pair (nuclear field) | 1.022 MeV |
| 2 MeV photon makes a pair: total kinetic energy shared | 2.000 − 1.022 = 0.978 MeV |
| If shared equally, each particle's kinetic energy | ≈ 0.489 MeV |
| Wavelength of a 1.022 MeV photon | λ = hc/E ≈ 1.21 × 10⁻¹² m (1.21 pm) |
| Energy of each annihilation photon (e⁺ at rest) | 0.511 MeV |
| Angle between the two annihilation photons | 180° (back-to-back), by momentum conservation |
| Radiation length in lead (scale for shower development) | X₀ ≈ 0.56 cm |
Python — threshold and energy sharing
# Pair production energetics
m_e_c2 = 0.511 # electron rest-mass energy, MeV
# Threshold to create an electron-positron pair in a nuclear field
threshold = 2 * m_e_c2
print(f"Threshold energy: {threshold:.3f} MeV") # 1.022 MeV
# Threshold for triplet production (recoil off an electron)
triplet_threshold = 4 * m_e_c2
print(f"Triplet threshold: {triplet_threshold:.3f} MeV") # 2.044 MeV
def kinetic_energy_shared(E_photon):
"""Total kinetic energy available to the electron-positron pair."""
if E_photon < 2 * m_e_c2:
return None # below threshold: no pair can form
return E_photon - 2 * m_e_c2
for E in [0.8, 1.022, 2.0, 10.0]:
ke = kinetic_energy_shared(E)
if ke is None:
print(f"{E:6.3f} MeV photon: below threshold, no pair")
else:
print(f"{E:6.3f} MeV photon: {ke:.3f} MeV of KE shared "
f"(~{ke/2:.3f} MeV each if equal)")
# Photon wavelength at threshold
h = 6.626e-34 # J*s
c = 2.998e8 # m/s
eV = 1.602e-19 # J
E_J = 1.022e6 * eV
wavelength = h * c / E_J
print(f"Wavelength at threshold: {wavelength*1e12:.2f} pm") # ~1.21 pm
# Annihilation: positron at rest meets electron at rest
# Two photons, each carrying one rest mass, emitted back-to-back
print(f"Each annihilation photon: {m_e_c2:.3f} MeV, separated by 180 deg")
Annihilation and PET scanning
Pair production has a perfect time-reverse: annihilation. After a positron is created (or emitted by a radioactive nucleus), it loses energy as it ploughs through matter, then finds an electron. The two mutually destroy each other, and their combined rest mass — 1.022 MeV — reappears as light, usually as two 0.511 MeV photons flying off in exactly opposite directions to conserve momentum.
This back-to-back photon pair is the working principle of positron emission tomography (PET). A patient is given a tracer such as fluorine-18-labelled glucose. The tracer emits positrons; each positron annihilates within a millimetre or two; the two 0.511 MeV photons fly out 180° apart and strike a ring of detectors at nearly the same instant. By recording which two detectors fire together (a "coincidence"), the scanner draws a line through the body that the annihilation must have happened on. Millions of such lines reconstruct a three-dimensional map of metabolic activity — invaluable for finding tumours and studying the brain.
Where pair production shows up
- Gamma-ray shielding. Above a few MeV, dense, high-Z materials like lead and tungsten stop gammas chiefly by converting them to pairs, exploiting the Z² cross-section.
- Electromagnetic showers. A high-energy photon pair-produces, the electron and positron radiate bremsstrahlung photons, those photons pair-produce again — a cascade of particles in calorimeters at the LHC and in the atmosphere from cosmic rays.
- Medical imaging. PET relies on the inverse process (annihilation); medical linac calorimetry and dosimetry must account for pair production above 1.022 MeV.
- Astrophysics. Pair production sets the "gamma-ray horizon": photons above ~TeV energies are absorbed by colliding with starlight or the cosmic microwave background. Pair-instability supernovae and neutron-star magnetospheres are governed by it.
- Early universe. When the cosmos was hotter than ~6 × 10⁹ K, photons were energetic enough to freely create electron-positron pairs, keeping matter and radiation in equilibrium.
- Strong-field and laser physics. Two-photon (Breit-Wheeler) pair production, long a theoretical prediction, is now probed with intense lasers and was observed in heavy-ion collisions at RHIC in 2021.
A short history
The story begins with Paul Dirac. His 1928 relativistic equation for the electron had solutions with negative energy that he could not throw away. By 1931 he reinterpreted them as a new particle with the electron's mass but opposite charge — the positron, the first antiparticle ever predicted. In 1932 Carl Anderson, photographing cosmic rays in a cloud chamber, saw a track that curved the wrong way in his magnetic field: a positive particle as light as an electron. The positron was real, and Anderson won the 1936 Nobel Prize. Pair production — making those positrons to order from gamma rays — soon followed as the textbook demonstration that mass and energy are two faces of the same thing.
Common mistakes
- Thinking it can happen in vacuum. A free photon can never pair-produce; a third body (nucleus or electron) is required to conserve momentum. The "field" of the nucleus is essential, not incidental.
- Forgetting the factor of two in the threshold. The threshold is 1.022 MeV, not 0.511 MeV — you must create two rest masses, the electron and the positron.
- Confusing the threshold with the dominant energy. Pair production becomes possible at 1.022 MeV but only dominant above several MeV; in the intervening band Compton scattering usually wins.
- Assuming equal energy sharing. The electron and positron share the excess energy, but not necessarily equally — the split varies event to event; equal sharing is only the average.
- Mixing up the two thresholds. Pair production off a nucleus needs 1.022 MeV; triplet production off an electron needs 2.044 MeV. They are different processes with different Z-dependence.
- Calling annihilation "pair production in reverse" carelessly. Annihilation needs no third body because two photons can balance momentum on their own — so the symmetry with single-photon pair production is not exact.
Frequently asked questions
What is pair production?
Pair production is the process in which a high-energy photon (a gamma ray) disappears and its energy reappears as a particle and its antiparticle — almost always an electron and a positron. The photon's energy E = hf is converted into the rest mass plus kinetic energy of the two new particles, a literal demonstration of Einstein's E = mc². Because a single free photon cannot conserve both energy and momentum on its own, the conversion must occur in the field of a nucleus or another particle that soaks up the recoil.
Why does pair production need at least 1.022 MeV?
An electron and a positron each have a rest-mass energy of m_e·c² = 0.511 MeV. To create both, the photon must supply at least the sum of those two rest masses, 2 × 0.511 = 1.022 MeV. This is the threshold energy. A photon below 1.022 MeV simply cannot make an electron-positron pair, no matter how many nuclei it passes; any extra energy above threshold becomes the kinetic energy of the two particles.
Why is a nucleus needed for pair production?
A photon carries momentum p = E/c, but a stationary electron-positron pair created exactly at threshold would have zero momentum. Energy and momentum cannot both be conserved if the photon vanishes in empty space. A nearby heavy nucleus absorbs the leftover momentum by recoiling, taking almost no energy because it is so massive. This is why the cross-section grows roughly as Z² — the more protons in the nucleus, the stronger the Coulomb field that catalyzes the conversion.
How is pair production different from the photoelectric effect or Compton scattering?
These are the three ways photons interact with matter, each dominating at different energies. The photoelectric effect (photon fully absorbed, electron ejected) dominates below ~100 keV. Compton scattering (photon scatters off an electron, losing some energy) dominates from ~100 keV to a few MeV. Pair production (photon converts to an electron-positron pair) only begins at 1.022 MeV and dominates above ~5–10 MeV, especially in high-Z materials like lead.
What happens to the positron after it is created?
The positron slows down as it travels through matter, then meets an electron and annihilates. The mass of both turns back into light, typically two 0.511 MeV photons emitted in opposite directions. This is the reverse of pair production and is the physical basis of PET scanning in medicine: a radioactive tracer emits positrons, each annihilation produces a back-to-back photon pair, and detectors reconstruct where in the body it happened.
Can two photons collide to make matter without a nucleus?
Yes — this is two-photon (Breit-Wheeler) pair production, predicted in 1934. Two photons whose combined energy exceeds 1.022 MeV can collide and create an electron-positron pair directly, with no nucleus required because the two photons together can balance momentum. It is extremely rare under everyday conditions but occurs in intense laser experiments, near neutron stars, and in the early universe. Direct observation of the linear Breit-Wheeler process was reported at RHIC in 2021.