| name | coupling-spread-quantum-field-theory |
| description | Statistical methodology for analyzing O(1) coupling expectations in quantum field theories. Quantifies the spread (ratio of largest to smallest dimensionless couplings) and derives closed-form probability distributions for coupling ratios. Use when: analyzing naturalness in particle physics, studying coupling constant distributions, computing probability bounds for hierarchies in QFT, or applying statistical reasoning to fundamental physics parameters. Activates on keywords: O(1) couplings, coupling spread, quantum field theory couplings, naturalness problem, dimensionless coupling distribution, IID coupling analysis. |
Coupling Spread Analysis in Quantum Field Theories
Statistical Framework (arXiv:2606.12393)
This methodology critically examines the "naturalness" expectation that dimensionless couplings in a fundamental quantum field theory should all be of order unity, and provides exact statistical tools to quantify how likely large coupling hierarchies are under this assumption.
Core Insight
Even if all fundamental couplings are drawn from a distribution concentrated around O(1), the ratio of the largest to smallest (the "spread") can be unexpectedly large — and this is a statistical inevitability, not fine-tuning.
Spread Measure
spread = max(|g_i|) / min(|g_i|)
where g_i are the dimensionless couplings in the Lagrangian density.
Closed-Form Results
For IID Unit Normal Couplings (n independent):
- Probability that ratio of two couplings exceeds R: P(|g_i/g_j| > R)
- For n=20 couplings: P(ratio > 100) = 0.29 (nearly 1/3!)
- Even with exponentially suppressed tails, ratios have fat power-law tails
Key Finding
The distribution of coupling ratios develops heavier tails as the number of independent couplings increases — meaning large hierarchies are MORE likely in theories with more parameters.
Probability Computation
import numpy as np
from scipy import stats
def coupling_ratio_probability(n, threshold, dist='normal'):
"""Compute P(max|g|/min|g| > threshold) for n IID couplings."""
if dist == 'normal':
return 1 - (1 - 2/np.pi * np.arctan(1/threshold))**(n*(n-1)/2)
elif dist == 'exponential':
pass
p = coupling_ratio_probability(n=20, threshold=100)
Implications for Model Building
- Naturalness is statistical: A factor of 100 between couplings is NOT evidence of fine-tuning if there are 20+ independent parameters
- More parameters → more hierarchy: The probability of large ratios increases with model complexity
- Fat tails are universal: Any distribution with support on (0, ∞) produces heavy-tailed ratio distributions
When to Use
- Assessing naturalness claims in BSM physics
- Statistical analysis of parameter spaces in QFT
- Understanding expected hierarchies in fundamental theories
- Model comparison based on coupling spread metrics
- Bayesian model selection with coupling priors
Pitfalls
- Not a resolution of hierarchy problem: This is a statistical observation, not a dynamical mechanism
- IID assumption: Real theories may have correlated couplings (RG flow, symmetries)
- Dimensional couplings: This analysis applies only to dimensionless couplings
- Log-normal distributions: If couplings are log-normally distributed, the spread distribution changes significantly
Applications
This methodology bridges:
- Statistics: Extreme value theory, ratio distributions, order statistics
- Quantum field theory: Naturalness, coupling hierarchies, model building
- Probability: IID random variables, fat-tailed distributions
- Information theory: Parameter uncertainty quantification
References
- arXiv:2606.12393 — "The Fundaments of Unity: O(1) Couplings in Quantum Field Theories" (Allanach, June 2026)
- Cross-lists: hep-ph, hep-th, physics.data-an