Encyclopedia Foundation Foundation Gauge Group Cube Cube Face Pairs

ARTICLE 4 claims 4 theorems

Foundation Gauge Group Cube Cube Face Pairs

A cube has three pairs of opposite faces, and Recognition Science uses that plain fact to explain why the standard model's gauge group has three strong-force ranks.

The cube's face pairs

A cube has three pairs of opposite faces: left and right, front and back, top and bottom. That elementary observation is the whole content of the declaration cubeFacePairs, a definition in the Recognition Science framework's machine-checked library of formal theorems. The declaration simply sets the number of face pairs to 3, and a theorem confirms the equality by the most direct possible proof: the definition itself. Nothing about forces, particles, or quantum fields enters at this step; the declaration is pure geometry, a count of directions in three-dimensional space.

Recognition Science then connects that count to particle physics. The framework models the standard model's gauge group, the collection of symmetry transformations that governs three of the four fundamental forces, as having rank 3 + 2 + 1 = 6. The 3 in that sum comes from the cube's face pairs, which the framework identifies with the rank of SU(3), the symmetry group of the strong force. A second theorem states the full decomposition: the strong rank is 3, the weak rank is 2, and the electromagnetic rank is 1. A third theorem packages all of these as a single certificate, a structured proof object that bundles the total rank, the decomposition, the cube connection, and the decreasing order of the ranks.

The framework's library proves these statements as formal theorems with no unproved assumptions. The rank decomposition (3, 2, 1) is the unique decreasing partition of 6 into three parts whose first part equals the spatial dimension 3, and the library verifies that uniqueness by direct computation. What the framework does not claim is that the cube itself generates the gauge group or its dynamics. The cube supplies a counting argument: the number of face-pair directions equals the strong force rank. The physical mechanism by which recognition events in three dimensions would produce the actual SU(3) × SU(2) × U(1) gauge group of the standard model is not derived in this declaration; it remains a target for further work.

The practical payoff of the declaration is a clean numerical coincidence with a structural explanation. The standard model's gauge group has rank 6, and a three-dimensional cube has exactly three face-pair directions, matching the strong rank. The framework's contribution is to make that match precise and machine-checked: the equality gaugeRankSU3 = cubeFacePairs is a proved theorem, not a hand-waved analogy. A reader can now see exactly what the cube contributes to the gauge group story, and exactly where the story stops.

THEOREM cubeFacePairs · cubeFacePairs_eq_3 · IndisputableMonolith/Foundation/GaugeGroupCube.lean
/-- Cube face-pair count = 3 (D=3 spatial dimension). -/
def cubeFacePairs : ℕ := 3
theorem cubeFacePairs_eq_3 : cubeFacePairs = 3 := rfl
THEOREM su3_rank_eq_face_pairs · IndisputableMonolith/Foundation/GaugeGroupCube.lean
/-- SU(3) rank matches cube face-pair count. -/
theorem su3_rank_eq_face_pairs : gaugeRankSU3 = cubeFacePairs := rfl
THEOREM rankDecomposition · IndisputableMonolith/Foundation/GaugeGroupCube.lean
/-- Ranks match spatial dimension, sub-cube, and phase. -/
theorem rankDecomposition :
    gaugeRankSU3 = 3 ∧ gaugeRankSU2 = 2 ∧ gaugeRankU1 = 1 := by
  exact ⟨rfl, rfl, rfl⟩
THEOREM unique_321_partition_example · IndisputableMonolith/Foundation/GaugeGroupCube.lean
unique_321_partition_example · IndisputableMonolith/Foundation/GaugeGroupCube.lean:38
/-- The (3,2,1) partition is the unique decreasing partition of 6 into 3 parts
    where first part = D = 3. -/
theorem unique_321_partition_example :
    gaugeRankSU3 = 3 ∧ gaugeRankSU2 = 2 ∧ gaugeRankU1 = 1 ∧
    gaugeRankSU3 ≥ gaugeRankSU2 ∧ gaugeRankSU2 ≥ gaugeRankU1 := by
  decide

What this page does not claim

The cube does not generate the gauge group or its dynamics. No physical mechanism is derived connecting recognition events to the standard model gauge group. The declaration does not predict any new particles or couplings.

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/Foundation/GaugeGroupCube.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