The numbers were on paper before the machine existed. This section predicts masses, widths and rates from one measured angle, and then builds the collider that will check them.
🎯 Why this matters
One measured angle goes in and a dozen numbers come out. That ratio between what is put in and what is predicted is what separates a theory from a description, and it is why a single disagreement would have been fatal.§9.4 measured the angle. Everything in this section is a consequence — and the point is how little is put in. One partial width, the colour factor 3, the CKM elements of §7.11 and the table you already have, and out come both masses, both total widths, every branching ratio and both production cross-sections.
Then §9.6 asks the practical question. If the weighs 80 GeV, how do you make one in 1983?
§9.5 One number, and the rest is arithmetic
The leptonic width of the requires quantum field theory and the book does not derive it. But it only has to be quoted once:
Bettini p. 366. The only dynamical input in the whole section — everything below is this number times a ratio of couplings.
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.
Now every other channel is that number times something you already know. Quarks bring two factors: the colour multiplicity 3, and from the mixing matrix. And three channels are simply shut — , , — because , which nobody knew when the was found.
| channel↕ | how many↕ | factor × ↕ | width (MeV)▼ |
|---|---|---|---|
| , , | 3 | 1 each | 225 each, 675 total |
| 1 | 660 | ||
| 1 | 640 | ||
| 1 | 34 | ||
| 1 | 33 | ||
| , , | 3 | closed: | 0 |
| , | 2 | , — both | ≈ 0 |
| total | 2040 = 2.04 GeV |
💡 What this really says — the branching ratios are Cabibbo angles in disguise
Look at the two large quark channels and the two small ones. and are each worth about 2.9 lepton channels; and are worth 0.15. The ratio is , the same suppression that §7.9 extracted from kaon decays.
So the width is a weighted sum over the CKM matrix, and because each row of a unitary matrix has unit norm, the total is almost exactly lepton units — three lepton families plus two open quark families times three colours. The measured against a naive is that counting, and the small gap is QCD corrections.
Supplied — the table above has all the channels and the counting only becomes visible when they are grouped by CKM row. The three blocks are the same size for a reason that has nothing to do with their contents: each quark row contributes by unitarity alone, so a W does not need to know the Cabibbo angle to decide how often it decays to an electron.
The individual elements only redistribute width within a block — which is why ud̄ is 640 MeV and us̄ is 34, in the ratio , while their sum is fixed. The third row is worth zero not because its elements are small but because , a fact nobody knew when the W was discovered.
This is why problem 9.11 asks for the branching ratio and expects you to answer without computing a single width: count the channels, weight the quarks by three for colour, and let unitarity handle the mixing. The individual CKM elements never appear.
The works the same way with a different master constant, and now the couplings are the of §9.3:
| channel↕ | how many↕ | (at )↕ | colour↕ | width (MeV)↕ |
|---|---|---|---|---|
| 3 | 1 | 165 each — 495 invisible | ||
| 3 | 1 | 83 each — 249 | ||
| , | 2 | 3 | 280 each | |
| , , | 3 | 3 | 370 each | |
| 1 | closed: | 3 | 0 | |
| hadrons, total | 1670 | |||
| total | 2420 = 2.42 GeV |
both bosons, computed from scratch
import numpy as np
GF = 1.1663788e-5
MW, MZ, s2 = 80.0, 91.0, 0.232
Ge = GF*MW**3/(6*np.pi*np.sqrt(2))
print("the W, from ONE dynamical number")
print(f" Gamma(W -> e nu) = G_F M_W^3 / (6 pi sqrt2) = {Ge*1e3:.1f} MeV book: 225\n")
print(f" leptons 3 x {Ge*1e3:.1f} = {3*Ge*1e3:4.0f} MeV")
tot = 3*Ge
for nm, V in (('u dbar', 0.974), ('c sbar', 0.990), ('u sbar', 0.224), ('c dbar', 0.220)):
f = 3*V**2; w = f*Ge; tot += w
print(f" {nm} 3 x {V:.3f}^2 x Gamma_e = {f:5.3f} x = {w*1e3:4.0f} MeV")
print(" " + "-"*54)
print(f" Gamma_W = {tot:.3f} GeV book: 2.04")
print( " measured (9.92): 2.085 +- 0.042\n")
print(f" BR(W -> e nu) = {Ge/tot*100:.1f}% naive channel count 1/9 = 11.1%")
print( " measured 10.7% -- the small gap is QCD corrections")
K = GF*MZ**3/(3*np.sqrt(2)*np.pi)
cz = lambda i3, q: i3 - s2*q
print(f"\nthe Z, from ONE constant and the c_Z table")
print(f" G_F M_Z^3 / (3 sqrt2 pi) = {K*1e3:.0f} MeV book: 660\n")
rows = [('nu nubar', 3, [(0.5, 0)], 1), ('l+ l-', 3, [(-0.5, -1), (0, -1)], 1),
('u ubar', 2, [(0.5, 2/3), (0, 2/3)], 3), ('d dbar', 3, [(-0.5, -1/3), (0, -1/3)], 3)]
w = {}
for nm, n, cs, col in rows:
b = sum(cz(i, q)**2 for i, q in cs); w[nm] = col*K*b
print(f" {nm:12s} x{n} sum c_Z^2 = {b:.4f} colour {col} -> {w[nm]*1e3:6.1f} MeV")
print(" " + "-"*54)
print(f" Gamma_inv = 3 x {w['nu nubar']*1e3:.1f} = {3*w['nu nubar']*1e3:4.0f} MeV book: 495")
had = 2*w['u ubar'] + 3*w['d dbar']
print(f" Gamma_had = 2 x {w['u ubar']*1e3:.1f} + 3 x {w['d dbar']*1e3:.1f} = {had*1e3:4.0f} MeV book: 1670")
GZ = 3*w['nu nubar'] + 3*w['l+ l-'] + had
print(f" Gamma_Z = {GZ:.3f} GeV book: 2.42")
print( " measured (9.80): 2.4952 +- 0.0023")
print("\nwhy the Z is wider than the W despite weaker couplings per channel:")
print(f" M_Z^3 / M_W^3 = {(MZ/MW)**3:.2f} -- the mass cubed does most of the work")
print( " and the Z has 21 open channels against the W's 9") the W, from ONE dynamical number Gamma(W -> e nu) = G_F M_W^3 / (6 pi sqrt2) = 224.0 MeV book: 225 leptons 3 x 224.0 = 672 MeV u dbar 3 x 0.974^2 x Gamma_e = 2.846 x = 638 MeV c sbar 3 x 0.990^2 x Gamma_e = 2.940 x = 659 MeV u sbar 3 x 0.224^2 x Gamma_e = 0.151 x = 34 MeV c dbar 3 x 0.220^2 x Gamma_e = 0.145 x = 33 MeV ------------------------------------------------------ Gamma_W = 2.035 GeV book: 2.04 measured (9.92): 2.085 +- 0.042 BR(W -> e nu) = 11.0% naive channel count 1/9 = 11.1% measured 10.7% -- the small gap is QCD corrections the Z, from ONE constant and the c_Z table G_F M_Z^3 / (3 sqrt2 pi) = 659 MeV book: 660 nu nubar x3 sum c_Z^2 = 0.2500 colour 1 -> 164.9 MeV l+ l- x3 sum c_Z^2 = 0.1256 colour 1 -> 82.9 MeV u ubar x2 sum c_Z^2 = 0.1432 colour 3 -> 283.3 MeV d dbar x3 sum c_Z^2 = 0.1846 colour 3 -> 365.3 MeV ------------------------------------------------------ Gamma_inv = 3 x 164.9 = 495 MeV book: 495 Gamma_had = 2 x 283.3 + 3 x 365.3 = 1662 MeV book: 1670 Gamma_Z = 2.405 GeV book: 2.42 measured (9.80): 2.4952 +- 0.0023 why the Z is wider than the W despite weaker couplings per channel: M_Z^3 / M_W^3 = 1.47 -- the mass cubed does most of the work and the Z has 21 open channels against the W's 9
📏 Γ_inv is a counting experiment disguised as a width
The three neutrino channels contribute 495 MeV that no detector can see. The book defines the invisible width as the total width in undetectable channels, and then makes the observation this whole chapter has been building towards: if that width is due to neutrino species,
and is predicted, exactly, with no free parameters — the neutrino’s does not even depend on (§9.4). So measuring a width counts particles you cannot detect, including any that have not been thought of, provided only that they are lighter than and couple to the .
§9.9 does it and gets . Note what that number forecloses: not just a fourth neutrino, but — if families are universal — a fourth family.
Making one: the resonance cross-section
Both bosons can be formed by quark–antiquark annihilation, so the machine to build is a quark–antiquark collider. The nearest available thing is a proton–antiproton collider, and near resonance the cross-section is §4.1’s Breit–Wigner:
Bettini p. 368. Eq. (4.67) for a spin-1 resonance formed from two spin-½ particles, with one extra factor the colour makes necessary.
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.
At the peak this gives about 8.8 nb for the and about 0.8 and 1 nb for the from and . The numbers are an order of magnitude smaller for two compounding reasons: its partial widths are smaller and its mass is larger, and both enter squared or inverse-squared.
Erratum — Eq. (9.58) does not evaluate to the number it states
The equation is printed with its inputs visible:
Evaluate it: , divided by gives ; times gives ; times 388 gives μb = 8.6 nb.
Getting 8.8 requires , not 81 — and 80 GeV is the value the chapter itself predicts in Eq. (9.29) and uses everywhere else. So the is the odd one out. A 2.5 % slip that changes nothing, but the page invites you to check the arithmetic and the arithmetic does not close.
Worth noting alongside it: the conversion constant here is 388 μb·GeV², while §9.9’s Example 9.4 uses 339 for the same quantity. The correct value is μb·GeV², so 388 is rounding and 339 is a transposition — see that section’s erratum. Both confirmed on the renders of PDF pp. 387 and 401.
Aside — Eq. (9.42)‘s 35 MeV is rounding, not an error
Recomputing (9.42) with the book’s own inputs, MeV, which rounds to 34 rather than the printed 35 — while (9.43), , rounds correctly to the printed 33.
The inconsistency is only apparent. Any between about 228 and 232 MeV makes both round as printed, and the book only ever commits to ” MeV”; the exact value depends on which you put in the cube. So this is rounding slack, not a mistake, and the total (9.46) = 2.04 GeV comes out right either way. Recorded because the discrepancy is visible to anyone who checks, and it is worth knowing that it is benign.
§9.6 A collider for quarks, and one event in ten billion
Rubbia, Cline and McIntyre proposed in 1976 to rebuild the CERN SPS as a proton–antiproton storage ring. The physics case is the resonance above; the engineering case is that antiprotons are hard. Van der Meer’s stochastic cooling stochastic cooling van der Meer's feedback technique for reducing the random spread of particles inside a bunch; it is what made antiproton colliders, and therefore the W and Z discovery, possible. defined in §9.5-9.6 — open in glossary is what made a dense enough antiproton beam possible, reaching .
🔢 Worked example — Example 9.3, and what a year buys
At the design luminosity, with pb and pb, a 50 % detection efficiency and a running year of s:
Twenty-six s and two s in a year. That is the entire experiment, and it explains the history exactly: the was announced several months before the , not because it was easier to identify but because there were thirteen times as many.
It also explains why the “mnemonic rule” that a year is seconds gets rounded down to — machine filling, maintenance and downtime eat the difference, and the book says so.
The hard part is not the rate; it is the background. The cross-sections above are eight to nine orders of magnitude below the total proton–antiproton cross-section of 60 mb, so the detector needs a discriminating power of at least . Hadronic and decays are more frequent and completely hopeless — buried under , and the rest. Only the leptonic channels can be used, and finding them needs three ideas: cutting on transverse momentum transverse momentum p_T, the momentum component perpendicular to the beams. Unchanged by a longitudinal boost, so it is the variable every hadron-collider observable is built from — the longitudinal momenta of the colliding partons being unknown. defined in §9.5-9.6 — open in glossary , demanding isolation isolation the requirement that no other track lie within ΔR = √(Δη² + Δφ²) of a lepton, typically 0.3–0.7. It is what separates a lepton from a W or Z decay from a lepton produced inside a heavy-flavour jet. defined in §9.5-9.6 — open in glossary within a cone measured in pseudorapidity pseudorapidity η = −ln tan(θ/2). Differences in η are invariant under a boost along the beam, which is what makes it the right polar coordinate when the parton centre of mass is moving and unknown. defined in §9.5-9.6 — open in glossary , and reading the neutrino off the missing transverse energy missing transverse energy E_T^miss, the vector imbalance of the calorimetric energy flow in the transverse plane; the observable stand-in for an escaping neutrino. Only the transverse components are usable, because the detector is open along the beam. defined in §9.5-9.6 — open in glossary .
| variable↕ | definition↕ | why it separates↕ |
|---|---|---|
| transverse momentum | the momentum component perpendicular to the beams | a lepton from an 80 GeV boson at rest carries GeV of . A lepton from a charm or beauty decay carries at most a fraction of the parent mass — under 1 GeV — and the boost along the beam does not change the transverse component |
| isolation | no other track within , typically 0.3–0.7 | the dangerous background is a high- lepton from a heavy-flavour decay inside a jet. That lepton has company; a lepton from a does not |
| missing transverse energy | the vector sum of all calorimeter cell energies, transverse components only | the neutrino from is invisible, so it shows up as an imbalance. Requires a hermetic detector — and only the transverse projection is usable, because the beam pipe is open |
⚙️ Engineer’s bridge — why everything at a hadron collider is transverse
The variables above share a feature that looks like a limitation and is actually the design principle: all three are transverse, and the longitudinal direction is thrown away. It is worth understanding why, because it governs every plot in the rest of the chapter.
The colliding objects are not the protons; they are partons carrying unknown fractions and of the beam momenta. So the parton–parton centre of mass is moving along the beam with a velocity you do not know, and cannot measure. Every longitudinal quantity is therefore contaminated by an unknown boost.
But a boost along leaves the transverse components untouched. So is the same in the parton frame and the lab, and a transverse momentum balance holds in both. Pseudorapidity is chosen for exactly the same reason: has the property that differences in are boost-invariant, which is why is built from rather than .
The engineering analogue is close to exact. You are measuring a signal riding on an unknown DC offset, so you AC-couple: throw away the component the interference lives in, and work entirely in the one that is clean. You lose information — the longitudinal momentum of the genuinely cannot be reconstructed when a neutrino escapes — and you accept the loss because the alternative is unusable data. §9.7’s Jacobian peak is what you do once you have made that choice: extract the mass from a transverse distribution alone.
Where it breaks: projecting onto the transverse plane is lossy in a way that choosing a coordinate system is not, and the loss is not recoverable by better instrumentation. With one escaping neutrino you can still solve for the longitudinal component using a mass constraint; with two — as in — the event is underdetermined no matter what you build, which is why that channel yields a broad transverse-mass shape and never a peak. And missing transverse momentum is a balance, so it inherits every mismeasurement in the event: one badly calibrated jet manufactures a neutrino that was never there.
The detector that follows from those three requirements is UA1, and its structure is the one every collider detector has used since:
🧅 UA1 — the layered design every collider detector has used since
Pick a particle above to light up the layers it touches, and click any layer for what it measures. No single layer identifies anything — the pattern across all five does.
UA1 in cross-section (Bettini Figs. 9.12–9.13), and the origin of the layered design. The beams enter along the axis; a particle produced at the centre meets each layer in turn. Click a layer to see what it measures, or pick a particle to see its signature.
Reading the layers outward, and noting what each one is for in this measurement:
- the central detector — a large cylindrical time projection chamber in a horizontal magnetic field, giving an electronic image of every charged track and its momentum from curvature;
- the electromagnetic calorimeter — lead and scintillator, in which electrons and photons deposit all their energy. Comparing this energy with the momentum from curvature is what identifies an electron;
- the hadron calorimeter — iron and scintillator, whose iron also serves as the magnet’s return yoke. Hermetic, because requires that nothing escapes sideways;
- iron absorbers, for the tails of forward hadronic showers;
- muon chambers outside everything, because muons are what survive.
| channel↕ | signature↕ |
|---|---|
| one isolated electron at high , and high | |
| one isolated muon at high , and high | |
| two isolated electrons, opposite sign, both at high — and no missing energy | |
| two isolated muons, opposite sign, both at high |
💡 What this really says — colour counted twice, in opposite directions
Worth collecting, because it is easy to think one of them is a mistake.
In the widths, colour multiplies by 3. A can decay to in three ways — red, green, blue — and they are distinct final states, so the rate is three times a single one.
In the formation cross-section, colour divides by 9. To make a colourless , the incoming quark and antiquark must carry matching colour and anticolour. Given a random quark and a random antiquark, that is one combination in nine.
Both are correct, and they are the same counting seen from two ends: summing over final states multiplies, averaging over initial states divides. Eq. (9.57)‘s and Eq. (9.44)‘s appear four pages apart and the book does not connect them.
The general rule is worth internalising, because it is the commonest arithmetic error in this subject: sum over what you cannot distinguish in the final state, average over what you did not choose in the initial state.
🔑 If you remember only three things
-
Three cuts turn one in ten billion into a countable sample. The selection is the experiment; the detector only has to survive what the selection demands of it.
-
How often you make one follows from how it decays. Nothing new is measured to predict the production rate — the same widths do both jobs.
-
A collider for quarks is a machine nobody can aim. You collide protons and take whatever the partons bring, which is why the cuts matter more than the beam does.
Where this goes next
Everything above is a prediction. §9.7 is the year those predictions met the data: UA1 and UA2 found both bosons at the predicted masses, measured the mass from the Jacobian peak, confirmed its spin from the decay angular distribution, and extracted from the mass ratio — where, as §9.4 noted, the calorimeter calibration cancels.
The widths computed here are tree-level, and all three come out a few per cent below the measured values — 2.04 against 2.085, 2.42 against 2.4952. That is not a defect. §9.9 measures those same widths to four significant figures at LEP, and the gap between prediction and measurement is where the radiative corrections live — including, eventually, the top quark and the Higgs.
✅ Check yourself — the W, the Z, and the machine that found them
0/6 answered · 0 correct
1.Colour multiplies the W's hadronic widths by 3 but divides the formation cross-section (9.57) by 9. Is one of them wrong?
2.Why is the Z wider than the W (2.42 against 2.04 GeV) even though every one of its couplings is weaker than the W's?
3.Γ_inv is the Z's width into everything invisible, and N_ν = Γ_inv/Γ_νν̄. Why is this a strong measurement rather than a circular one?
4.Example 9.3 finds 26 W and 2 Z events per year at the design luminosity. What does that explain about the history?
5.Why is every observable at a hadron collider built from TRANSVERSE quantities — p_T, E_T^miss, Δη rather than Δθ?
6.Evaluating Eq. (9.58) with its own printed inputs — 4π/3, 1/81², 0.640 × 0.225/2.04², × 388 — gives 8.6 nb, but the equation states 8.8 nb. What is going on?