“Elementary” is a statement about the probe, not about the particle: anything smaller than ħc/q is indistinguishable from a point, so every elementary particle here is elementary at the momenta reached so far.
🎯 Why this matters
This is why accelerators grew. Resolution is bought with momentum and with nothing else, so each new layer of structure cost a larger machine than the one before it — the physics sets the engineering rather than the other way round.This is the section that justifies the whole field. Scattering experiments are how every layer of structure — crystals, molecules, atoms, nuclei, nucleons, quarks — was found, and they all work on one principle:
The scattered intensity is the squared Fourier transform of the target’s charge distribution, with momentum transfer as the conjugate variable.
If you have ever looked at a diffraction pattern, you already know this. The rest of the section is making that statement precise and reading the consequences.
Start with optics
Light of wave-vector falls on a screen whose amplitude transparency is — how much of the incident amplitude gets through at each point, including any phase shift. The amplitude diffracted at angle θ is the sum over the screen of each element’s contribution with its phase delay :
That is a Fourier transform, with the transverse wave-vector as the conjugate variable. Nothing here is quantum mechanical yet.
⚙️ Engineer’s bridge — you have done this before
This is the same statement as “the far-field antenna pattern is the spatial Fourier transform of the aperture illumination”, and as “the frequency response is the transform of the impulse response”. Same theorem, three fields.The consequences you already know transfer directly:
- A narrow aperture gives a broad pattern. A small target scatters over wide angles; a large one concentrates the scattering forwards.
- A sharp edge gives ringing. The uniform sphere in the widget below has diffraction zeros for exactly the reason a rectangular window has sidelobes.
- You cannot resolve detail finer than a wavelength. Which, via , is the entire argument for building accelerators.
The only thing particle physics adds is that the “wavelength” is set by the probe’s momentum, so buying resolution means buying energy.
Where it breaks: the optical analogy assumes elastic, coherent scattering from a static potential — which is exactly the regime where a form factor is a Fourier transform and “resolution ~ wavelength” holds. The measurement this book cares about most is the other kind: in deep inelastic scattering (§6.2) the target is destroyed, the final state is a mess nobody measures, and there is no diffraction pattern to invert. “Buying resolution with momentum” survives that transition; “reading the shape by Fourier transform” does not.
The resolution statement, made sharp: a target of diameter produces a maximum phase variation across itself. If
that variation is too small to detect, and the target is indistinguishable from a point. Every “elementary” particle in this book is elementary only in the sense that nobody has yet hit it hard enough to see otherwise.
The same thing, for particles
Scatter an electron off a nucleus’s electrostatic potential. Both the incoming and outgoing electrons are free, so their wave functions are plane waves, and the matrix element becomes
The amplitude is the transform of the potential. Use Poisson’s equation to trade the potential for the charge density — which costs one factor of — and you arrive at the master formula:
Bettini p. 28. Everything about the target's shape sits in the last factor; everything else is the same for any target.
Every symbol, one at a time
Hover or tap a symbol above — it lights up in the equation and its meaning, units and type appear here.
💡 What this really says — scattering samples the Fourier transform of the target, one q at a time
An experiment measures as a function of angle. Divide out the and the couplings, and what is left is — a direct sampling of the Fourier transform of the target, one value per scattering angle.So a scattering experiment is a transform-domain measurement, and mapping out a charge distribution means scanning and inverting. That is exactly what Hofstadter did for nuclei in the 1950s, and what §6.2 does for the proton — where the answer turns out not to be a static shape at all.
🔬 Scattering is a Fourier transform
- ρ(r) — the target, in real space
- |F(q)|² — what you measure
A sharp edge produces diffraction zeros — the first at qR = 4.49. Finding those zeros is how you measure a nucleus’s radius, and it is literally the same calculation as a circular-aperture Airy pattern. Below q = 0.164 GeV the target is indistinguishable from a point: |F|² is still within a few per cent of 1, and the cross-section follows Rutherford. You only see structure by hitting harder.
Rutherford: the case with no structure
Put a point charge at the origin. Its density is a delta function, its transform is a constant, , and (1.91) collapses to
For Rutherford’s own experiment — α particles of a few MeV, so non-relativistic, and — substituting gives the familiar textbook form:
- Rutherford — point charge, no spin
- Mott — same, with the electron spin
- with a form factor — R = 2.7 fm sphere at p = 0.5 GeV
🔢 Worked example — how small can a 20 GeV electron see? (Problem 1.5)
An electron beam of GeV, scattered electrons detected at . The electron is ultra-relativistic and the proton heavy enough that , so andThe smallest structure this resolves is
Roughly a tenth of a proton — which is exactly the regime in which SLAC found the proton was not a smooth ball of charge but three point-like scatterers inside it (§6.2). Note what set the answer: not the beam energy alone, but the beam energy times the angle. Forward scattering, however energetic, resolves nothing.
⚠️ The recoil correction
The formulae above assume the target does not move. It does. For elastic scattering of a light particle of energy off a mass :The energy transferred is negligible when — a 20 GeV electron on a gold nucleus keeps 98.6 % of its energy at 30° — but the momentum transfer is never negligible, and momentum transfer is what does the resolving. Off a proton, the same 20 GeV electron at 30° comes out with only 5.19 GeV: it has given the proton three-quarters of its energy. That distinction between a heavy and a light target is the entire difference between elastic scattering off a nucleus and deep inelastic scattering off a nucleon.
Reproduce it
import numpy as np
hbarc = 0.1973269804 # GeV fm
E, th = 20.0, np.radians(6) # Problem 1.5
q = 2 * E * np.sin(th / 2) # ultra-relativistic elastic
print(f"20 GeV e- at 6 deg: q = {q:.4f} GeV -> resolves hbar c/q = {hbarc/q:.4f} fm")
F = lambda x: 3 * (np.sin(x) - x * np.cos(x)) / x**3 # uniform sphere
lo, hi = 3.0, 6.0 # bisect for the first zero
for _ in range(200):
mid = (lo + hi) / 2
lo, hi = (lo, mid) if F(lo) * F(mid) <= 0 else (mid, hi)
z = (lo + hi) / 2
print(f"uniform-sphere form factor: first zero at qR = {z:.4f}")
for R, name in ((7.0, 'gold '), (2.7, 'carbon')):
print(f" R = {R} fm ({name.strip()}) -> first diffraction zero at q = {z*hbarc/R:.4f} GeV")
a = 0.24 # proton dipole parameter
print(f"proton dipole R = {a} fm -> rms radius sqrt(12) R = {np.sqrt(12)*a:.3f} fm; "
f"|F|^2 at q=1 GeV is {(1/(1+(a/hbarc)**2)**2)**2:.4f}")
for M, name in ((0.938272, 'a proton '), (197*0.9315, 'a gold nucleus')):
Ep = 20.0 / (1 + (2*20.0/M) * np.sin(np.radians(30)/2)**2)
print(f"recoil: 20 GeV e- at 30 deg off {name} -> E' = {Ep:.5f} GeV (E'/E = {Ep/20:.3f})")
print(f"Rutherford sigma(90 deg)/sigma(10 deg) = "
f"{np.sin(np.radians(5))**4/np.sin(np.radians(45))**4:.3e}")
print(f"Mott/Rutherford at 90 deg = cos^2(45 deg) = {np.cos(np.radians(45))**2:.4f}") 20 GeV e- at 6 deg: q = 2.0934 GeV -> resolves hbar c/q = 0.0943 fm uniform-sphere form factor: first zero at qR = 4.4934 R = 7.0 fm (gold) -> first diffraction zero at q = 0.1267 GeV R = 2.7 fm (carbon) -> first diffraction zero at q = 0.3284 GeV proton dipole R = 0.24 fm -> rms radius sqrt(12) R = 0.831 fm; |F|^2 at q=1 GeV is 0.0265 recoil: 20 GeV e- at 30 deg off a proton -> E' = 5.18703 GeV (E'/E = 0.259) recoil: 20 GeV e- at 30 deg off a gold nucleus -> E' = 19.71217 GeV (E'/E = 0.986) Rutherford sigma(90 deg)/sigma(10 deg) = 2.308e-04 Mott/Rutherford at 90 deg = cos^2(45 deg) = 0.5000
🔑 If you remember only three things
-
A scattering experiment is a measurement in the transform domain. What you collect is the squared transform of the target; recovering a charge distribution means scanning q and inverting, which is exactly what Hofstadter did.
-
Rutherford’s law is the no-structure baseline. A point charge has F(q) = 1, so his 1/sin⁴(θ/2) is what every form factor is measured as a departure from.
-
Energy loss and momentum transfer are not the same smallness. A 20 GeV electron can keep 98.6 % of its energy and still deliver the momentum that sets the resolution.
Where this goes next
- §1.9–1.10 introduces the particles this machinery was used to find.
- §5.6–5.7 explains the Mott factor properly, as a consequence of helicity conservation.
- §6.2 Nucleon structure is this section applied at high — and the moment the form factor stops describing a static shape and starts describing point-like constituents.
✅ Check yourself — scattering as a Fourier transform
0/5 answered · 0 correct
1.In the form-factor widget, pick the uniform sphere. Why does it show zeros while the exponential does not?
2.A 20 GeV electron beam scatters at 6°. What sets the resolution, and what is it?
3.Why did Geiger and Marsden's occasional backward bounces astonish Rutherford?
4.Which statements about the recoil correction are right?
5.An experiment measures and divides out and the couplings. What is the remainder, physically?