Encyclopedia Constants Constants Alpha Genesis Curvature Jcost Verdict Cube Curvature Jcost Eq Pi Sq

ARTICLE 3 claims 2 theorems 1 open

Constants Alpha Genesis Curvature Jcost Verdict Cube Curvature Jcost Eq Pi Sq

A machine-checked proof shows the true recognition cost of a cube's corner curvature is π², not the much larger seed value once used in a failed attempt to derive a fundamental constant.

The honest cost of a cube's curvature

The fine-structure constant α measures the strength of the electromagnetic force, and its measured inverse value is about 137.036. A tempting route to derive this number from geometry starts with a cube: the cube has 8 corners, each with an angular deficit of π/2, and the total curvature of its surface is 4π by the Gauss-Bonnet theorem. A previous attempt multiplied this 4π by an arbitrary factor of 11 to get a seed value near 138, hoping to land close to 137.036.

That seed is a category error, and the Recognition Science framework's machine-checked library of formal theorems now says so precisely. The factor 4π is a linear topological invariant, a counting of total curvature. The framework's recognition cost, by contrast, is quadratic at equilibrium: a small displacement ε from the ideal costs ε²/2. A linear integral and a quadratic cost are different kinds of objects, and one cannot multiply the first by a count and call the product the second.

The theorem cubeCurvatureJCost_eq_pi_sq computes the genuine quadratic cost of the cube's curvature. Summing the quadratic cost of each of the 8 vertex deficits gives 8 · ½ · (π/2)² = π² ≈ 9.87. This is the honest forced quantity. The theorem proves this value is strictly below the topological 4π ≈ 12.57, and far below both the retired seed 4π·11 ≈ 138.23 and the measured inverse fine-structure constant. The cube's curvature, treated correctly, forces only a quantity of order 4π, not the fine-structure constant itself.

In Recognition Science, this verdict isolates where an earlier overclaim lived. The exact infrared value of α remains OPEN; the framework does not derive it. The theorem also leaves untouched other forced quantities that require no α input, such as a dressing factor and a spectral weight. What the theorem establishes is narrower and cleaner: a specific geometric seed was not a recognition cost, and the correct cost of the cube's curvature is π².

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]

What this page does not claim

The theorem does not claim that π² is the measured fine-structure constant or any approximation to it. It does not claim that the seed 4π·11 equals any physical quantity, only that it is not a recognition cost. It does not claim that the cube's curvature forces the value of α; that remains an open target.

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