Lesson 12 of 15

Running Coupling Constants

Running Coupling Constants

One of the most profound results of Quantum Field Theory is that coupling constants are not truly constant — they run with the energy scale QQ at which they are probed. This running arises from quantum corrections (loop diagrams) that dress the bare interaction vertex.

QED: α Increases with Energy

In Quantum Electrodynamics the fine-structure constant α\alpha grows logarithmically with energy due to vacuum polarisation (electron–positron virtual pairs screen the bare charge):

α(Q)=α01α03πln ⁣(Q2me2)\alpha(Q) = \frac{\alpha_0}{1 - \dfrac{\alpha_0}{3\pi} \ln\!\left(\dfrac{Q^2}{m_e^2}\right)}

where α0=1/137.036\alpha_0 = 1/137.036 is the low-energy value and me=5.11×104m_e = 5.11 \times 10^{-4} GeV. At the Z mass, α(mZ)1/134\alpha(m_Z) \approx 1/134.

QCD: αs Decreases with Energy (Asymptotic Freedom)

The strong coupling constant αs\alpha_s does the opposite: it decreases at high energy. This is asymptotic freedom, discovered by Gross, Politzer, and Wilczek (Nobel Prize 2004). At one loop:

αs(Q)=12π(332nf)ln(Q2/ΛQCD2)\alpha_s(Q) = \frac{12\pi}{(33 - 2n_f) \ln(Q^2 / \Lambda_{\text{QCD}}^2)}

where nfn_f is the number of active quark flavours (typically 5 above the bottom threshold), and ΛQCD0.217\Lambda_{\text{QCD}} \approx 0.217 GeV is the QCD scale where the coupling diverges. The coefficient β0=112nf/3=(332nf)/6\beta_0 = 11 - 2n_f/3 = (33 - 2n_f)/6 governs the running speed.

Scale QQαs\alpha_s
1 GeV0.5\approx 0.5 (non-perturbative)
mZ=91m_Z = 91 GeV0.11790.1179 (measured)
1 TeV0.09\approx 0.09

Your Task

Implement:

  • alpha_QED_running(Q_GeV) — running QED coupling at scale QQ
  • alpha_s_running(Q_GeV, n_f=5, Lambda_QCD=0.217) — one-loop QCD running coupling
  • coupling_ratio_QCD_QED(Q_GeV) — ratio αs/α\alpha_s / \alpha at scale QQ (implement both inline)

All constants must be defined inside each function body.

Python runtime loading...
Loading...
Click "Run" to execute your code.