Encyclopedia Constants Constants Alpha Genesis U1 Normalization Gauge Redundancy Eq 7
ARTICLE 4 claims 3 theorems 1 model
Constants Alpha Genesis U1 Normalization Gauge Redundancy Eq 7
A formal proof counts seven redundancies in a cube, and that small number blocks a hoped-for path to the fine-structure constant.
A number that closes a door
The fine-structure constant α is the number that sets the strength of electromagnetic interactions, roughly 1/137. A framework called Recognition Science has a candidate expression for it, but that expression rests on an identification, not a derivation. One of the framework's own machine-checked theorems, gauge_redundancy_eq_7, sharpens the problem: it proves that a certain modeled count of redundancies is exactly 7, and that number does not match the 11 channels the candidate expression uses.
In plain terms, the theorem is arithmetic about a cube. The cube has 8 vertices, 12 edges, and 6 faces. The framework defines a count called gauge redundancy, a modeled measure of how many of the cube's vertex positions are surplus constraints, as the number of vertices minus one: 8 − 1 = 7. The theorem proves this equality by direct computation. That is the entire formal content: a definition and a verified arithmetic fact.
The number matters because of what it is compared against. The framework's α seed, the expression 4π¹¹, uses the count 11, which it reads as the number of passive edges in a ledger, a discrete record of events. The candidate gauge count, by contrast, is the cube's cycle rank, computed as edges minus vertices plus one: 12 − 8 + 1 = 5. The framework proves these two counts differ: 11 ≠ 5. The theorem gauge_redundancy_eq_7 is one of the two routes to that 5, via the identity edges minus redundancy equals cycle rank: 12 − 7 = 5.
What the theorem does not do is as important as what it does. It does not construct a gauge theory, a Maxwell action, or a matter coupling. It does not prove that either 11 or 5 is a physical coefficient. It does not derive α. The framework's own documentation calls the graph and gauge interpretation "derived informally" and the counts as kinetic coefficients a "model". The theorem is a precise negative result: it closes the door on one hoped-for promotion of the α seed to a theorem, by showing the ledger count and the gauge count are genuinely different numbers.
The consequence is a sharper research target. The framework now knows exactly which premise fails: the identification of photon stiffness with the ledger channel count. The honest reading of the α seed is a conditional, a statement that holds only if that identification is accepted. The theorem makes that condition visible, and that is what a negative result is for.
THEOREM gauge_redundancy_eq_7 · IndisputableMonolith/Constants/AlphaGenesis/U1Normalization.lean
theorem gauge_redundancy_eq_7 : gauge_redundancy = 7 := by
unfold gauge_redundancy cube_vertices D; decide
THEOREM seed_channel_count_ne_gauge_dof · IndisputableMonolith/Constants/AlphaGenesis/U1Normalization.lean
/-- **Arithmetic verdict.** The seed channel count `11` is not the candidate
cycle-rank count `5`. This theorem does not identify either number with a
kinetic coefficient. -/
theorem seed_channel_count_ne_gauge_dof :
passive_field_edges D ≠ cube_cycle_rank := by
rw [seed_channel_count, cube_cycle_rank_eq_5]; norm_num
THEOREM physical_link_dof_eq_cycle_rank · IndisputableMonolith/Constants/AlphaGenesis/U1Normalization.lean
/-- The arithmetic identity `E − (V − 1) = E − V + 1` at the registered
dimension. The physical link-mode interpretation remains
DERIVED-UNFORMALIZED. -/
theorem physical_link_dof_eq_cycle_rank :
cube_edges D - gauge_redundancy = cube_cycle_rank := by
rw [gauge_redundancy_eq_7, cube_cycle_rank_eq_5]; unfold cube_edges D; decide
MODEL SeedNormalizationReading · IndisputableMonolith/Constants/AlphaGenesis/U1Normalization.lean
/-- A reading of the α seed `4π·11` as a coupling normalization. The seed
equals `(4π) × (stiffness)` with `e² = 1` ONLY under three inputs, the third of
which is precisely the ledger-vs-gauge mismatch: the stiffness used is the
passive-edge (ledger channel) count, which is NOT the gauge-invariant cycle
rank. So this is an identification, not a gauge-theory theorem. -/
structure SeedNormalizationReading : Prop where
/-- (i) MODEL: Heaviside–Lorentz convention `α = e²/(4π)`. -/
hl_convention : True
/-- (ii) IDENTIFICATION: bare charge quantum `e² = 1` (J-cost Hessian `= 1`;
the particle/antiparticle double-entry factor of `2` is not independently
ruled out here). -/
charge_unit_one : True
/-- (iii) IDENTIFICATION (the load-bearing one): the photon stiffness is taken
to be the passive-edge ledger channel count `11`, which is not the candidate
graph cycle-rank count `5`. -/
stiffness_is_ledger_not_gauge : passive_field_edges D ≠ cube_cycle_rank
What this page does not claim
This answer does not claim that gauge_redundancy_eq_7 derives or refines the fine-structure constant. This answer does not claim that the cube graph or its cycle space is constructed in the formal library. This answer does not claim that either the ledger count 11 or the gauge count 5 is a measured physical quantity.
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/U1Normalization.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:
- What would a genuine U(1) gauge theory derived from the cube require beyond the finite parity quotient?
- Could a different identification of photon stiffness, other than the ledger channel count, promote the α seed to a theorem?
- What physical principle, if any, selects the ledger count 11 over the gauge count 5?
- Does the framework's assembled alphaInv bound constrain any future coupling-normalization theorem?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM gauge_redundancy_eq_7 · IndisputableMonolith/Constants/AlphaGenesis/U1Normalization.lean
theorem gauge_redundancy_eq_7 : gauge_redundancy = 7 := by unfold gauge_redundancy cube_vertices D; decideThe theorem proves that a certain modeled count of redundancies is exactly 7. gauge_redundancy_eq_7 · IndisputableMonolith/Constants/AlphaGenesis/U1Normalization.leanTHEOREM seed_channel_count_ne_gauge_dof · IndisputableMonolith/Constants/AlphaGenesis/U1Normalization.lean
/-- **Arithmetic verdict.** The seed channel count `11` is not the candidate cycle-rank count `5`. This theorem does not identify either number with a kinetic coefficient. -/ theorem seed_channel_count_ne_gauge_dof : passive_field_edges D ≠ cube_cycle_rank := by rw [seed_channel_count, cube_cycle_rank_eq_5]; norm_numThe framework proves these two counts differ: 11 ≠ 5. seed_channel_count_ne_gauge_dof · IndisputableMonolith/Constants/AlphaGenesis/U1Normalization.leanTHEOREM physical_link_dof_eq_cycle_rank · IndisputableMonolith/Constants/AlphaGenesis/U1Normalization.lean
/-- The arithmetic identity `E − (V − 1) = E − V + 1` at the registered dimension. The physical link-mode interpretation remains DERIVED-UNFORMALIZED. -/ theorem physical_link_dof_eq_cycle_rank : cube_edges D - gauge_redundancy = cube_cycle_rank := by rw [gauge_redundancy_eq_7, cube_cycle_rank_eq_5]; unfold cube_edges D; decideThe theorem is one of the two routes to that 5, via the identity edges minus redundancy equals cycle rank: 12 − 7 = 5. physical_link_dof_eq_cycle_rank · IndisputableMonolith/Constants/AlphaGenesis/U1Normalization.leanMODEL SeedNormalizationReading · IndisputableMonolith/Constants/AlphaGenesis/U1Normalization.lean
/-- A reading of the α seed `4π·11` as a coupling normalization. The seed equals `(4π) × (stiffness)` with `e² = 1` ONLY under three inputs, the third of which is precisely the ledger-vs-gauge mismatch: the stiffness used is the passive-edge (ledger channel) count, which is NOT the gauge-invariant cycle rank. So this is an identification, not a gauge-theory theorem. -/ structure SeedNormalizationReading : Prop where /-- (i) MODEL: Heaviside–Lorentz convention `α = e²/(4π)`. -/ hl_convention : True /-- (ii) IDENTIFICATION: bare charge quantum `e² = 1` (J-cost Hessian `= 1`; the particle/antiparticle double-entry factor of `2` is not independently ruled out here). -/ charge_unit_one : True /-- (iii) IDENTIFICATION (the load-bearing one): the photon stiffness is taken to be the passive-edge ledger channel count `11`, which is not the candidate graph cycle-rank count `5`. -/ stiffness_is_ledger_not_gauge : passive_field_edges D ≠ cube_cycle_rankIt does not construct a gauge theory, a Maxwell action, or a matter coupling. SeedNormalizationReading · IndisputableMonolith/Constants/AlphaGenesis/U1Normalization.lean