Three competing predictions for 1/α, recorded before CODATA 2026 publishes.
The git commit timestamp is the proof of priority.
The integer part of 1/α is derived from E7 Lie algebra topology:
The fractional part comes from a self-consistent equation encoding one-loop vacuum polarization on the E7 ALE space:
Three closed-form candidates for r are registered below. Each is stated with its derivation, or honest lack thereof.
CODATA 2022: 1/α = 137.035 999 177(21)
Uncertainty: 0.153 ppb = 1σ.
rexact = 0.798 906 594 955... (value of r that exactly reproduces CODATA 2022)
| r | 0.798 913 322 632 588... |
| Δ from CODATA | −1.79 × 10−10 |
| ppb | −0.001 |
| σ (CODATA 2022) | 0.009 |
The McKay correspondence maps finite subgroups of SU(2) to ADE Dynkin diagrams. The binary octahedral group 2O (order 48) — the symmetry group of the star tetrahedron inscribed in C³ — maps to the affine E7 Dynkin diagram.
Attach a semi-infinite chain at the branch node (node 2, degree 3) of the E7 Dynkin diagram. This models the E7 discrete structure coupling to flat-space continuum. The scattering phase shift at the golden angle k = 2π/5 (energy E = 1/φ) gives δ = 0.798, capturing graph topology but missing Lie algebra structure.
The Lie algebra correction:
The ratio 19/18 counts total degrees of freedom (133) versus internal oscillations (126 roots). The 7 extra dimensions are the Cartan subalgebra — the part that couples to the continuum. The roots stay internal; the rank radiates out.
Physical picture: E7 is a drumhead (133-dimensional discrete structure). Flat space is the air. r measures how efficiently the structure radiates into the continuum. The arctan wrapping arises from impedance matching at the boundary between discrete and continuous spectra.
| r | 0.797 884 560 802 866... |
| Δ from CODATA | +2.72 × 10−8 |
| ppb | +0.199 |
| σ (CODATA 2022) | 1.30 |
√(2/π) is E[|X|] for X ~ N(0,1) — the mean absolute value of a standard Gaussian. The original proposal was that r encodes the Gaussian field average of the U(1) gauge orbit, derived from the Eguchi-Hanson spectral determinant on the A1 ALE space (resolved C²/Z2).
The spectral determinant test: does Δζ'(0) on the A1 ALE space equal log(π)?
If yes, √(2/π) emerges naturally as a spectral coefficient. The computation (double Hurwitz zeta function, verified to 12+ digits):
The number that DOES appear naturally is log(2) (from the double sine function on S³/Z2), consistent with det(Cartan of A1) = 2. The Eguchi-Hanson metric does not produce log(π). The derivation is dead.
| r | 0.800 000 000 000 000 |
| Δ from CODATA | −2.91 × 10−8 |
| ppb | −0.213 |
| σ (CODATA 2022) | 1.39 |
There is none.
4/5 is the continued-fraction convergent [0; 1, 3, 1] of rexact. The next CF coefficient is 35 (large), making 4/5 the best simple-fraction approximation. One can note 4/5 = max(Kac) / (max(Kac) + min(Kac)) = 4/(4+1), but this is post-hoc pattern matching with no physical mechanism.
CODATA 2026 is expected to achieve ~0.05 ppb uncertainty in 1/α, a 3× improvement over CODATA 2022. This comes from improved electron g−2 measurements and 5th-order QED calculations.
| Pair | Separation (ppb) | σ at 0.05 ppb | Distinguishable? |
|---|---|---|---|
| C1 vs C2 | 0.200 | 4.0 | Yes |
| C1 vs C3 | 0.211 | 4.2 | Yes |
| C2 vs C3 | 0.411 | 8.2 | Yes |
All three candidates are mutually distinguishable at >3σ. CODATA 2026 resolves the question completely.
If the CODATA 2022 central value holds:
| Candidate | Offset (ppb) | σ at 0.05 ppb | Verdict |
|---|---|---|---|
| C1 arctan(√(19/18)) | 0.001 | 0.03 | SURVIVES |
| C2 √(2/π) | 0.199 | 3.97 | KILLED |
| C3 4/5 | 0.213 | 4.25 | KILLED |
How much improvement over CODATA 2022 is needed for a 3σ kill (assuming the central value does not shift)?
| Candidate | Kill requires unc < | Improvement factor |
|---|---|---|
| C1 arctan | 0.0004 ppb | 352× |
| C2 √(2/π) | 0.066 ppb | 2.3× |
| C3 4/5 | 0.071 ppb | 2.2× |
C2 and C3 are killable with the expected 3× improvement. C1 requires 352× improvement — far beyond any foreseeable measurement.
C1 (arctan) survives at 0.03σ. C2 (√(2/π)) killed at ~4σ. C3 (4/5) killed at ~4σ.
The only surviving candidate has a complete derivation chain from E7 topology.
C2 revives — but still has no derivation. C1 stays alive (within 0.2 ppb). C3 dies harder.
C3 revives — but still has no derivation. C1 stays alive. C2 dies harder.
C1 survives. It is the only candidate with both a derivation and a value that cannot be killed by any foreseeable measurement.
All values computed with mpmath at 60-digit precision. Verify with:
import mpmath
mpmath.mp.dps = 60
r1 = mpmath.atan(mpmath.sqrt(mpmath.mpf(19)/18))
r2 = mpmath.sqrt(mpmath.mpf(2)/mpmath.pi)
r3 = mpmath.mpf(4)/5
for name, r in [("arctan", r1), ("sqrt(2/pi)", r2), ("4/5", r3)]:
B = mpmath.mpf(274) * 137 + mpmath.pi**2
disc = B**2 - 4 * 274 * r
x = (B + mpmath.sqrt(disc)) / 548
print(f"{name}: 1/alpha = {mpmath.nstr(x, 18)}")
The git commit timestamp of this file is the proof of priority.