Encyclopedia Constants Constants Alpha Genesis Curvature Jcost Verdict

ARTICLE 4 claims 4 theorems

Constants Alpha Genesis Curvature Jcost Verdict

A machine-checked library proves that a once-promising seed for the fine-structure constant was a category error, not a real physical cost.

The curvature cost verdict

The fine-structure constant α is the number that sets the strength of electromagnetic interactions, roughly 1/137. A natural question is whether its value can be derived from deeper principles. Recognition Science, a framework that models physical structure from a discrete record of events called a ledger, attempted this. The attempt produced a seed value of 4π·11, which is about 138.23. The module CurvatureJCostVerdict in the framework's machine-checked library of formal theorems records the verdict on that attempt.

The verdict is that the seed was a category error. The factor 4π in the seed is not a cost but a linear topological invariant, the total curvature of a sphere as given by the Gauss-Bonnet theorem. A recognition cost, by contrast, is quadratic at equilibrium. The framework's canonical cost function J has a quadratic term with coefficient 1/2. Multiplying a linear invariant by an edge count and calling the product a cost conflates two different mathematical objects.

When the genuine quadratic cost of the cube's curvature is computed, summing one half times the square of each of the eight vertex deficits of π/2, the result is π², about 9.87. This is strictly less than the topological 4π, about 12.57, and far below the seed value. A theorem in the library proves this inequality. The seed is therefore not a recognition cost at all.

In Recognition Science, this finding isolates the seed as the locus of an overclaim. The exact infrared value of α remains OPEN. The framework does not derive the measured fine-structure constant, which is 137.035999177(21) per CODATA 2022. The construction's band of (137.030, 137.039) is a window on a witness value at a specific normalization, not a claim about α. A theorem proves every value inside that band is realized by some normalization, so no measurement could have contradicted it. The measured value is excluded at more than 30000 sigma.

What survives is a calibration-free content: an O(4π) ultraviolet-scale recognition cost. This does not touch the forced dressing g(t) = φ⁻ᵗ or the forced spectral weight w₈, both of which require zero α input. The verdict is a precise statement about where the derivation failed, and it clears the way for a correct account of what the framework can and cannot force.

THEOREM cubeCurvatureJCost_eq_pi_sq · IndisputableMonolith/Constants/AlphaGenesis/CurvatureJCostVerdict.lean
/-- **The genuine J-cost of the cube curvature is `π²`.** `8 · ½ · (π/2)² = π²`.
This is the honest quadratic recognition cost, contrasted with the seed's
`4π·11`. -/
theorem cubeCurvatureJCost_eq_pi_sq : cubeCurvatureJCost = Real.pi ^ 2 := by
  unfold cubeCurvatureJCost
  rw [vertex_deficit_eq, Foundation.JCostHessianC7.jcostTaylorQuadraticCoefficient_eq]
  have h8 : (cube_vertices D : ℝ) = 8 := by exact_mod_cast vertices_at_D3
  rw [h8]; ring
THEOREM genuine_cost_lt_gaussBonnet · IndisputableMonolith/Constants/AlphaGenesis/CurvatureJCostVerdict.lean
/-- The genuine quadratic J-cost `π² ≈ 9.87` is strictly below the topological
Gauss-Bonnet integral `4π ≈ 12.57`: a quadratic cost and a linear topological
invariant are different objects, and they do not even agree numerically. -/
theorem genuine_cost_lt_gaussBonnet :
    cubeCurvatureJCost < 4 * Real.pi := by
  rw [cubeCurvatureJCost_eq_pi_sq]
  nlinarith [Real.pi_pos, Real.pi_lt_four]
THEOREM seed_far_above_genuine_cost · IndisputableMonolith/Constants/AlphaGenesis/CurvatureJCostVerdict.lean
/-- The seed `4π·11` is far above the genuine quadratic J-cost `π²` of the cube
curvature: `π² < 4π < 4π·11`. The seed is not a recognition cost. -/
theorem seed_far_above_genuine_cost :
    cubeCurvatureJCost < Constants.alpha_seed := by
  have h1 : cubeCurvatureJCost < 4 * Real.pi := genuine_cost_lt_gaussBonnet
  have h2 : (4 : ℝ) * Real.pi < Constants.alpha_seed := by
    simp only [Constants.alpha_seed]
    nlinarith [Real.pi_pos]
  linarith
THEOREM genuine_cost_far_below_alphaInv · IndisputableMonolith/Constants/AlphaGenesis/CurvatureJCostVerdict.lean
/-- The genuine quadratic J-cost is also far below the measured `α⁻¹`:
`π² < 137.030 < alphaInv`. So even the honest cost is not `α⁻¹(0)`; the cube
forces only an `O(4π)` UV-scale quantity. -/
theorem genuine_cost_far_below_alphaInv :
    cubeCurvatureJCost < Constants.alphaInv := by
  rw [cubeCurvatureJCost_eq_pi_sq]
  have h1 : Real.pi ^ 2 < 4 * Real.pi := by nlinarith [Real.pi_pos, Real.pi_lt_four]
  have h2 : (4 : ℝ) * Real.pi < 13 := by nlinarith [Real.pi_lt_d6]
  have h3 : (137.030 : ℝ) < Constants.alphaInv := Numerics.alphaInv_gt
  linarith

What this page does not claim

The module does not derive the fine-structure constant α. The module does not prove the seed value 4π·11 is wrong in all contexts, only that it is not a recognition cost. The module does not claim the framework's forced dressing or spectral weight are affected by this verdict.

Verify this page

Every tagged claim above names its theorem. To check one yourself rather than trust this page, elaborate the source module with Lean 4 and audit its axiom basis:

$ lake env lean IndisputableMonolith/Constants/AlphaGenesis/CurvatureJCostVerdict.lean
expected axiom basis: [propext, Classical.choice, Quot.sound] (the Lean kernel's standard three; no RS-specific axioms)

A page whose claims cannot be reproduced this way does not ship. In production, every anchor links to the exact declaration in the public source release, and this block carries the build receipt for the page itself.

Derived articles

This page is generated by a question-recursion engine: the questions its answers raise become the next pages. The current agenda, with open targets marked red:

MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND