Encyclopedia Foundation Foundation Particle Generations Face Pairs At D3
ARTICLE 4 claims 4 theorems
Foundation Particle Generations Face Pairs At D3
A cube has three pairs of opposite faces, and in Recognition Science that simple count is the formal reason there are exactly three families of fermions.
Three generations from a cube
A cube, the familiar three-dimensional box, has three pairs of opposite faces: top and bottom, front and back, left and right. This is a fact of ordinary geometry, true for any cube. The Recognition Science framework builds on that fact. Its machine-checked library of formal theorems contains a definition that counts these pairs for any dimension, and a theorem stating that for three dimensions the count is exactly three.
In the framework, the three spatial dimensions are not assumed but forced by an earlier chain of reasoning. Once that chain establishes D = 3, the cube geometry follows, and with it the three face-pairs. The framework then makes a specific identification: each pair of opposite faces corresponds to one fermion generation in its ledger, a discrete record of recognition events. The electron, muon, and tau, along with the three quark families, are each tied to one face-pair. The formal theorem face_pairs_at_D3 states that the number of face-pairs at D = 3 is 3, and a second theorem derives the same count from the physical dimension constant.
The framework also proves the negative claims. For three dimensions, the number of face-pairs cannot be four, and it cannot be two. These are not empirical observations but consequences of the definition: a three-dimensional cube simply has three such pairs, no more, no less. The framework presents this as the resolution of why three generations exist rather than two or four.
What this does not claim is just as important. The theorem establishes a count within the framework's own model. It does not measure the number of fermion generations in the physical world, nor does it predict any property of those generations such as their masses or mixing angles. The identification between face-pairs and generations is a modeling choice, not a proved physical law. The framework's own derivation of three spatial dimensions is cited as the starting point, but that derivation itself rests on earlier framework-specific assumptions.
THEOREM face_pairs_at_D3 · IndisputableMonolith/Foundation/ParticleGenerations.lean
/-- For D = 3, there are exactly 3 pairs of opposite faces. -/
theorem face_pairs_at_D3 : face_pairs 3 = 3 := rfl
THEOREM three_generations_from_dimension · IndisputableMonolith/Foundation/ParticleGenerations.lean
/-- **P-001 Resolution**: Three generations follow from D = 3.
In the RS framework:
1. DimensionForcing proves D = 3 is the unique spatial dimension
(linking, 8-tick, spinor structure).
2. A D-cube has D pairs of opposite faces.
3. Each face-pair corresponds to one fermion generation in the
ledger's mode-counting (one independent "direction" of
coherence per pair).
4. Thus: 3 generations.
This is not a coincidence — it is forced by the same dimension
argument that gives linking and spinors. -/
theorem three_generations_from_dimension :
face_pairs Foundation.DimensionForcing.D_physical = 3 := by
unfold face_pairs Foundation.DimensionForcing.D_physical
rfl
THEOREM no_fourth_generation · IndisputableMonolith/Foundation/ParticleGenerations.lean
/-- For D = 3, there cannot be 4 face-pairs (by definition). -/
theorem no_fourth_generation :
face_pairs 3 ≠ 4 := by
norm_num [face_pairs]
THEOREM not_two_generations · IndisputableMonolith/Foundation/ParticleGenerations.lean
/-- For D = 3, there cannot be 2 face-pairs. -/
theorem not_two_generations :
face_pairs 3 ≠ 2 := by
norm_num [face_pairs]
What this page does not claim
The theorem does not measure the number of fermion generations in the physical world. The identification between face-pairs and generations is a modeling choice, not a proved physical law. The framework does not predict any property of the generations such as their masses or mixing angles.
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/ParticleGenerations.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:
- How does the framework's chain of reasoning force the spatial dimension to be exactly three?
- What physical evidence connects the three fermion generations to the three face-pairs of a cube?
- Does the framework assign any properties such as mass or charge to the generations beyond their count?
- What is the ledger's mode structure that the face-pairs correspond to in the framework?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM face_pairs_at_D3 · IndisputableMonolith/Foundation/ParticleGenerations.lean
/-- For D = 3, there are exactly 3 pairs of opposite faces. -/ theorem face_pairs_at_D3 : face_pairs 3 = 3 := rflThe formal theorem face_pairs_at_D3 states that the number of face-pairs at D = 3 is 3. face_pairs_at_D3 · IndisputableMonolith/Foundation/ParticleGenerations.leanTHEOREM three_generations_from_dimension · IndisputableMonolith/Foundation/ParticleGenerations.lean
/-- **P-001 Resolution**: Three generations follow from D = 3. In the RS framework: 1. DimensionForcing proves D = 3 is the unique spatial dimension (linking, 8-tick, spinor structure). 2. A D-cube has D pairs of opposite faces. 3. Each face-pair corresponds to one fermion generation in the ledger's mode-counting (one independent "direction" of coherence per pair). 4. Thus: 3 generations. This is not a coincidence — it is forced by the same dimension argument that gives linking and spinors. -/ theorem three_generations_from_dimension : face_pairs Foundation.DimensionForcing.D_physical = 3 := by unfold face_pairs Foundation.DimensionForcing.D_physical rflA second theorem derives the same count from the physical dimension constant. three_generations_from_dimension · IndisputableMonolith/Foundation/ParticleGenerations.leanTHEOREM no_fourth_generation · IndisputableMonolith/Foundation/ParticleGenerations.lean
/-- For D = 3, there cannot be 4 face-pairs (by definition). -/ theorem no_fourth_generation : face_pairs 3 ≠ 4 := by norm_num [face_pairs]For three dimensions, the number of face-pairs cannot be four. no_fourth_generation · IndisputableMonolith/Foundation/ParticleGenerations.leanTHEOREM not_two_generations · IndisputableMonolith/Foundation/ParticleGenerations.lean
/-- For D = 3, there cannot be 2 face-pairs. -/ theorem not_two_generations : face_pairs 3 ≠ 2 := by norm_num [face_pairs]For three dimensions, the number of face-pairs cannot be two. not_two_generations · IndisputableMonolith/Foundation/ParticleGenerations.lean