Particle Physics
Higgs Boson
The "God particle" — gives other particles mass via the Higgs field
The Higgs boson is the elementary particle associated with the Higgs field — a field permeating all space that gives other particles their mass. Predicted by Peter Higgs (and others) in 1964; finally discovered at the LHC in 2012, completing the Standard Model. Mass = 125.25 GeV. Spin 0 (only fundamental scalar known). Won 2013 Nobel for Higgs and Englert.
- Mass125.25 GeV (≈ 134× proton mass)
- Spin0 (only fundamental scalar)
- PredictedPeter Higgs, François Englert, Robert Brout, others (1964)
- DiscoveredATLAS and CMS at LHC, July 4, 2012
- Nobel PrizeHiggs and Englert (2013)
- FunctionGives mass to W, Z bosons and fermions via Higgs field
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.
Role of the Higgs
The Higgs FIELD permeates all space — assigns particle masses by their coupling to it. Stronger coupling = heavier. The Higgs BOSON is an excitation (quantized vibration) of this field, observable as a particle.
| Particle | Mass | Higgs coupling |
|---|---|---|
| Top quark | 173 GeV | Largest (≈1) |
| Bottom quark | 4.18 GeV | ~0.024 |
| Tau lepton | 1.78 GeV | ~0.010 |
| Charm quark | 1.27 GeV | ~0.007 |
| Strange quark | 0.095 GeV | ~0.0005 |
| Muon | 0.106 GeV | ~0.0006 |
| Up, down quarks | ~0.005 GeV | ~10⁻⁵ |
| Electron | 0.511 MeV | ~3 × 10⁻⁶ |
| Photon, gluon | 0 | 0 |
Discovery
| Date | Event |
|---|---|
| 1964 | Higgs, Englert, Brout, etc. — theory proposed |
| 1980s-2000s | Searches at LEP, Tevatron — no detection |
| 2008-2010 | LHC begins; first collisions |
| July 4, 2012 | ATLAS, CMS announce discovery (5σ at 125 GeV) |
| 2013 | Higgs and Englert win Nobel |
| Now | Detailed measurements ongoing — couplings, decays |
JavaScript — Higgs calculations
// Higgs boson mass
const M_HIGGS_GEV = 125.25;
// Coupling to fermion
function higgsCoupling(particle_mass_GeV) {
// y_f = m_f / v, where v ~ 246 GeV (Higgs VEV)
const v = 246;
return particle_mass_GeV / v;
}
console.log(`Top: ${higgsCoupling(173).toFixed(2)}`);
console.log(`Electron: ${higgsCoupling(0.000511).toExponential(2)}`);
console.log(`Photon: ${higgsCoupling(0)}`); // 0 — massless
// Higgs production at LHC (qualitative)
// Main production: gluon-gluon fusion, ~85% of LHC Higgs
// Cross-section vs energy: increases with √s
const lhcCrossSection = {
'7 TeV': '~17 pb',
'8 TeV': '~22 pb',
'13 TeV': '~50 pb',
'14 TeV': '~55 pb',
// pb = picobarn = 10⁻⁴⁰ m²
};
console.log(lhcCrossSection);
// Decay branching ratios for SM Higgs at 125 GeV
const branchingRatios = {
'b b̄': 0.58, // bottom quark pair
'WW*': 0.21, // W boson pairs
'gg': 0.082, // gluons
'τ τ̄': 0.063, // tau leptons
'cc̄': 0.029,
'ZZ*': 0.026,
'γγ': 0.0023, // photons (rare but clean)
'Other': 0.005
};
console.log(branchingRatios);
console.log(`Total BR: ${Object.values(branchingRatios).reduce((a,b) => a+b).toFixed(2)}`); // ~1
// Higgs to photons branching: tiny but key for discovery
// Two clean photons in detector → relatively easy to identify
// Bottom quarks are ~250x more common but harder to detect cleanly
// Production rate at LHC
function higgsProductionRate(luminosity_per_fb, cross_section_pb) {
// 1 fb⁻¹ × 1 pb = 1000 events
return luminosity_per_fb * cross_section_pb * 1000;
}
// Run 2 LHC: ~140 fb⁻¹ at 13 TeV; cross-section 50 pb
console.log(`Run 2 Higgs events: ${(higgsProductionRate(140, 50) / 1e6).toFixed(1)} M`);
// 7 million Higgs events produced; tiny fraction detected
Where Higgs matters
- Standard Model. Final piece confirming the SM; mass mechanism essential.
- Cosmology. Higgs may have driven inflation; metastable vacuum could destabilize.
- Beyond SM. Hierarchy problem — why Higgs mass so much less than Planck scale; motivates BSM theories.
- Particle physics measurements. Higgs couplings tested for consistency with SM predictions.
- LHC physics program. Higgs is THE major discovery; precision Higgs studies ongoing.
- Future colliders. FCC, ILC proposed for precision Higgs measurements.
- Foundations. Higgs-driven phase transitions could affect early universe dynamics.
Common mistakes
- Calling it "God particle." Marketing term most physicists dislike. Higgs is one of 17 SM particles, not divine.
- Confusing Higgs field and Higgs boson. Field permeates space, gives mass. Boson is an excitation/quantum of the field — observable as a particle.
- Believing Higgs is the only mass source. ~98% of proton mass comes from QCD binding energy, not from quark Higgs masses. Higgs gives small "current" masses; QCD does the rest for protons/neutrons.
- Thinking Higgs interactions are gravity. Different — Higgs mechanism gives inertial mass via interaction with Higgs field. Gravity is separate (curvature of spacetime).
- Confusing Higgs with graviton. Higgs is spin-0 scalar; graviton (hypothetical) is spin-2. Different particles, different roles.
- Treating Higgs as fully understood. Discovery confirmed existence; deeper questions (hierarchy problem, naturalness) remain open.
Frequently asked questions
What does the Higgs boson do?
The Higgs FIELD (which the boson is an excitation of) permeates all space. Particles interact with this field; the strength of interaction determines their mass. Strongly interacting → heavy (top quark). Weakly → light (electron). No interaction → massless (photon). The Higgs boson itself is just an oscillation in this field — the "particle" associated with it.
Why "God particle"?
Marketing term. Physicist Leon Lederman wrote a book called "The Goddamn Particle" (referring to elusiveness); publisher shortened to "The God Particle." Most physicists dislike it — implies religious significance the science doesn't carry. The Higgs boson is just one Standard Model particle, important but not divine.
How was the Higgs discovered?
At LHC, proton-proton collisions at 7-8 TeV. Higgs occasionally produced; decays quickly to detectable final states (γγ, ZZ→4 leptons, WW, bb, ττ). Statistical bumps at 125 GeV in invariant mass plots. ATLAS and CMS independently found 5σ evidence simultaneously, July 2012. ~25 years after first proposal; cost ~$10 billion.
What's spontaneous symmetry breaking?
The Higgs mechanism. At high temperatures (early universe), Higgs field had zero "VEV" (vacuum expectation value) and electroweak force was unified. As universe cooled, Higgs field "fell" into a non-zero VEV. This breaks symmetry between EM and weak forces — distinguishes them. Generates W, Z masses; leaves photon massless.
Could there be more Higgs bosons?
Standard Model has ONE Higgs. Some BSM theories (e.g., supersymmetry) predict multiple Higgs bosons. Searches at LHC found no additional Higgs (yet). Theoretically, extended Higgs sector could explain hierarchy problem, dark matter, etc.
How is Higgs mass related to electroweak hierarchy?
The "hierarchy problem" — Higgs mass should naturally be enormous (Planck scale) due to quantum corrections, but it's only 125 GeV. Why so light? Suggests new physics at TeV scale (like supersymmetry). LHC searches for these — none found yet. Major puzzle for theorists.
Why is Higgs spin 0?
Standard Model needs a scalar field for spontaneous symmetry breaking — only spin-0 fields can have non-zero VEVs without breaking Lorentz symmetry. Higgs is the only fundamental spin-0 in SM. (Composite scalars like π exist but aren't fundamental.) Discovery confirmed it's spin 0; rules out alternatives like a graviton-like Higgs.