Particle Physics

Quarks and the Strong Force

Six quark types bound by gluons via strong force — building protons, neutrons, hadrons

Quarks are fundamental particles that combine to form hadrons — protons (uud), neutrons (udd), pions (qq̄), and others. Six "flavors": up, down, charm, strange, top, bottom. Bound by the strong force, mediated by gluons. The strong force gets STRONGER at large separations (asymptotic freedom + confinement) — quarks never observed alone.

  • Six quark flavorsu, d, c, s, t, b
  • Three colorsRed, green, blue (color charge, not visible)
  • Force carrierGluons (8 types; mediates strong force)
  • ConfinementQuarks always in color-neutral combinations
  • Asymptotic freedomStrong force WEAKER at high energy/short distance
  • TheoryQCD (Quantum Chromodynamics)

Interactive visualization

Press play, or step through manually. The visualization is yours to drive — try it before reading on.

Open visualization fullscreen ↗

Watch the 60-second explainer

A condensed visual walkthrough — narrated, captioned, under a minute.

The six quarks

QuarkChargeMassGeneration
up (u)+2/3~2.2 MeV1
down (d)−1/3~4.7 MeV1
charm (c)+2/3~1.27 GeV2
strange (s)−1/3~0.095 GeV2
top (t)+2/3~173 GeV3
bottom (b)−1/3~4.18 GeV3

Common hadrons

ParticleCompositionType
Proton (p)uudBaryon (3 quarks)
Neutron (n)uddBaryon
Lambda (Λ)udsBaryon
Pion (π⁺)ud̄Meson (q + q̄)
Pion (π⁻)Meson
Pion (π⁰)(uū − dd̄)/√2Meson
Kaon (K⁺)us̄Meson
J/ψcc̄Charm meson
Upsilon (Υ)bb̄Bottom meson

JavaScript — quarks and strong force

// Common hadrons and their compositions
const hadrons = {
  'proton': { content: 'uud', mass_MeV: 938.3, charge: +1 },
  'neutron': { content: 'udd', mass_MeV: 939.6, charge: 0 },
  'pion+': { content: 'ud̄', mass_MeV: 139.6, charge: +1 },
  'pion-': { content: 'dū', mass_MeV: 139.6, charge: -1 },
  'pion0': { content: '(uū − dd̄)/√2', mass_MeV: 135, charge: 0 },
  'kaon+': { content: 'us̄', mass_MeV: 493.7, charge: +1 },
  'lambda': { content: 'uds', mass_MeV: 1115.7, charge: 0 },
  'JPsi': { content: 'cc̄', mass_MeV: 3097, charge: 0 },
  'upsilon': { content: 'bb̄', mass_MeV: 9460, charge: 0 }
};

// Quark masses
const m_u = 2.2;
const m_d = 4.7;

// Proton: 2 up + 1 down
const m_proton_quarks = 2 * m_u + m_d;
console.log(`Proton from quark masses: ${m_proton_quarks} MeV`);
console.log(`Proton actual mass: 938.3 MeV`);
console.log(`From QCD binding: ${(938.3 - m_proton_quarks).toFixed(0)} MeV (~99% of total)`);

// Asymptotic freedom: strong coupling at different scales
function alphaStrong(Q_GeV) {
  // Approximate running of α_s with energy scale Q
  // α_s(M_Z = 91 GeV) ≈ 0.118
  const Lambda_QCD = 0.21;  // GeV (proxy for QCD scale)
  return 12 * Math.PI / (33 * Math.log(Math.pow(Q_GeV/Lambda_QCD, 2)));
  // 33 = 11·3 - 2·6 (33 = 11·N_c - 2·N_f); approximate
}

console.log(`α_s at 1 GeV: ~1 (strong coupling)`);
console.log(`α_s at 100 GeV: ~0.12`);
console.log(`α_s at 1000 GeV (LHC): ~0.09`);
// Asymptotic freedom — weaker at higher Q

// Confinement: linear potential
function quarkPotential_LinearTerm(separation_fm) {
  // V(r) ≈ σ·r where σ ~ 1 GeV/fm (string tension)
  const sigma = 1;  // GeV/fm
  return sigma * separation_fm;
}

console.log(`Energy at 1 fm: ${quarkPotential_LinearTerm(1)} GeV`);
console.log(`Energy at 2 fm: ${quarkPotential_LinearTerm(2)} GeV — enough to make qq̄ pair`);

// Why we see hadrons not free quarks
console.log(`To separate two quarks ~1 fm requires ~1 GeV`);
console.log(`But quark-antiquark pair production from vacuum = ~280 MeV (light pion)`);
console.log(`So instead of separating quarks, vacuum creates pair → hadronization`);

Where this matters

  • Particle physics. Standard Model, hadron physics, scattering experiments.
  • Nuclear physics. Nucleon-nucleon binding, fission, fusion.
  • Cosmology. Quark-gluon plasma in early universe; phase transitions.
  • Heavy-ion physics. RHIC, LHC create quark-gluon plasma — recreate early universe conditions.
  • Astrophysics. Neutron stars may have quark matter cores; pulsar physics.
  • Cosmic rays. High-energy nuclei interact via strong force in atmospheric showers.
  • Lattice QCD. Computational physics calculates hadron properties from first principles.

Common mistakes

  • Confusing quark color with visible colors. Color charge is named arbitrarily; nothing to do with light. Three values labeled R, G, B.
  • Treating quark mass as proton mass source. Proton has 2u + 1d → ~9.1 MeV from quarks. Proton actually 938 MeV. ~99% from QCD binding (gluon energy).
  • Believing free quarks can be isolated. Confinement prevents this. Pulling two quarks apart creates new quark-antiquark pair from vacuum — never separated.
  • Confusing strong force with strong nuclear force. Same thing. "Strong nuclear" emphasizes nuclei; "strong force" is fundamental between quarks.
  • Forgetting asymptotic freedom. Counter-intuitive: stronger at low energy, weaker at high energy. Different from EM.
  • Treating hadrons as quark-only. Most of hadron mass is gluon binding energy, not quark rest mass. Plus virtual quark-antiquark "sea" inside.

Frequently asked questions

What are the six quarks?

Up (u, charge +2/3, ~2 MeV), Down (d, -1/3, ~5 MeV), Charm (c, +2/3, 1.27 GeV), Strange (s, -1/3, 0.095 GeV), Top (t, +2/3, 173 GeV), Bottom (b, -1/3, 4.18 GeV). Three "generations" with similar structure; heavier generations decay to lighter via weak force.

Why is the strong force "strong"?

At nuclear distances (~1 fm), it's ~100× stronger than EM and ~10⁴⁰× stronger than gravity. But it has very short range — falls off rapidly beyond ~1 fm. Within range, dominates. Holds protons and neutrons together against electrical repulsion in nuclei.

What's color charge?

Like electric charge, but with three values: red, green, blue (and anti-colors for antiquarks). Gluons carry color too. Strong force depends on color. Bound states must be "color-neutral" — either RGB (baryons) or color+anti-color (mesons). Names are conventional; nothing to do with visible colors.

What's confinement?

You can't isolate a single quark. Try to pull two quarks apart — energy in "color flux tube" between them grows linearly (unlike EM which falls off). Eventually enough energy to create new quark-antiquark pair from vacuum. Result — never see free quark, only hadrons.

What's asymptotic freedom?

At very high energies (= short distances), strong force becomes WEAKER. Counter to most forces (EM stronger when closer). Discovered by Gross, Wilczek, Politzer (Nobel 2004). Why high-energy physics works — quarks behave like free particles within hadrons at high energies (deep inelastic scattering).

How does fusion in stars use the strong force?

Once nuclei get close enough (overcoming Coulomb), strong force binds them. Hydrogen → helium fusion releases ~7 MeV per nucleon (binding energy difference). Total Sun output: 4 million tons of mass to energy per second. Without strong force, no fusion, no stars.

What about gluons themselves?

8 gluons, all massless. Can interact with each other (unlike photons in EM). This self-interaction is why strong force is so different. "Glueball" particles (gluons only) theoretically exist but hard to identify experimentally. Gluons make up most of proton mass via QCD binding energy.