Encyclopedia Constants Constants Alpha Genesis U1 Normalization Cube Cycle Rank Eq 5
ARTICLE 3 claims 3 theorems
Constants Alpha Genesis U1 Normalization Cube Cycle Rank Eq 5
A simple arithmetic fact about a cube, 12 minus 8 plus 1 equals 5, and the careful line between counting and physical meaning.
The cube count
The theorem cube_cycle_rank_eq_5 establishes a plain arithmetic fact about a three-dimensional cube: its number of edges (12) minus its number of vertices (8) plus 1 equals 5. In the language of graph theory, this is the cycle rank of the cube graph, the number of independent loops you can trace along its edges. The machine-checked proof simply unfolds the definitions and verifies the arithmetic; it constructs no graph, no gauge action, and no physical model. The same count also appears as the number of square faces (6) minus 1, a coincidence that holds only in three dimensions.
The context matters because this count sits inside a larger project about the fine-structure constant α. The project's seed value for α involves the number 11, which comes from a different counting: the number of passive edges in a ledger-like recognition channel, a discrete record of events. The theorem seed_channel_count_ne_gauge_dof proves that 11 is not equal to 5. This is not a failure; it is a precise statement that the ledger count and the graph cycle rank are different objects. Neither count, on its own, is proved to be a coefficient in any physical equation for the photon or for α.
The framework's library also defines a candidate quantity, 4π times the cycle rank, which evaluates to 20π. A theorem proves this candidate is less than the assembled value of α⁻¹, but this is only a comparison of numbers, not a derivation of a Maxwell action or a coupling constant. The honest summary is a structure called SeedNormalizationReading, which bundles three assumptions: a unit convention, a bare charge quantum, and the key identification that the photon stiffness is the ledger count 11 rather than the gauge count 5. This structure is inhabited, meaning the reading is consistent, but it is an identification, not a theorem about physics.
THEOREM cube_cycle_rank_eq_5 · IndisputableMonolith/Constants/AlphaGenesis/U1Normalization.lean
theorem cube_cycle_rank_eq_5 : cube_cycle_rank = 5 := by
unfold cube_cycle_rank cube_edges 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 gauge_invariant_seed_excluded · IndisputableMonolith/Constants/AlphaGenesis/U1Normalization.lean
/-- The defined candidate `20π` is less than the corpus's assembled
`Constants.alphaInv`. This is not a direct measurement verdict, and it does
not establish a genuine gauge normalization. -/
theorem gauge_invariant_seed_excluded :
gauge_invariant_seed < Constants.alphaInv := by
rw [gauge_invariant_seed_eq_20pi]
have hpi : Real.pi < (3.141593 : ℝ) := Real.pi_lt_d6
have h1 : (20 : ℝ) * Real.pi < 63 := by nlinarith [hpi]
have h2 : (137.030 : ℝ) < Constants.alphaInv := Numerics.alphaInv_gt
linarith
What this page does not claim
The theorem does not construct a graph, a cycle space, or a gauge action. Neither the number 11 nor the number 5 is proved to be a photon kinetic coefficient. The comparison of 20π with α⁻¹ is not a measurement or a derivation of α.
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 physical meaning, if any, does the cycle rank of a cube graph have for a gauge theory?
- How does the ledger channel count of 11 arise from the recognition framework?
- What would a genuine coupling-normalization theorem require beyond the arithmetic shown here?
- Is the coincidence between cycle rank and faces minus one special to three dimensions?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM cube_cycle_rank_eq_5 · IndisputableMonolith/Constants/AlphaGenesis/U1Normalization.lean
theorem cube_cycle_rank_eq_5 : cube_cycle_rank = 5 := by unfold cube_cycle_rank cube_edges cube_vertices D; decideThe theorem cube_cycle_rank_eq_5 establishes a plain arithmetic fact about a three-dimensional cube: its number of edges (12) minus its number of vertices (8) plus 1 equals 5. cube_cycle_rank_eq_5 · 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 theorem seed_channel_count_ne_gauge_dof proves that 11 is not equal to 5. seed_channel_count_ne_gauge_dof · IndisputableMonolith/Constants/AlphaGenesis/U1Normalization.leanTHEOREM gauge_invariant_seed_excluded · IndisputableMonolith/Constants/AlphaGenesis/U1Normalization.lean
/-- The defined candidate `20π` is less than the corpus's assembled `Constants.alphaInv`. This is not a direct measurement verdict, and it does not establish a genuine gauge normalization. -/ theorem gauge_invariant_seed_excluded : gauge_invariant_seed < Constants.alphaInv := by rw [gauge_invariant_seed_eq_20pi] have hpi : Real.pi < (3.141593 : ℝ) := Real.pi_lt_d6 have h1 : (20 : ℝ) * Real.pi < 63 := by nlinarith [hpi] have h2 : (137.030 : ℝ) < Constants.alphaInv := Numerics.alphaInv_gt linarithA theorem proves this candidate is less than the assembled value of α⁻¹, but this is only a comparison of numbers, not a derivation of a Maxwell action or a coupling constant. gauge_invariant_seed_excluded · IndisputableMonolith/Constants/AlphaGenesis/U1Normalization.lean