Encyclopedia Foundation Foundation Cycle Operator Generation Axis Coupling
ARTICLE 3 claims 3 theorems
Foundation Cycle Operator Generation Axis Coupling
A machine-checked theorem counts how often an eight-step recognition cycle flips each of three axes, and finds the counts are not equal.
The axis coupling theorem
A recognition cycle, a discrete record of events that returns to its start, can be built from eight steps. In Recognition Science, the framework models this cycle as a path through the eight corners of a cube, where each step flips exactly one coordinate. The Gray code, a standard ordering of binary sequences where consecutive values differ in one bit, provides the path: 0, 1, 3, 2, 6, 7, 5, 4, then back to 0.
The theorem generation_axis_coupling counts, over one full cycle, how many times each of the cube's three axes gets flipped. The result is asymmetric: one axis is flipped four times, while each of the other two is flipped twice. This asymmetry is not an assumption; it is a proved property of the Gray code cycle itself, checked by the machine-checked library of formal theorems. The theorem states the counts exactly as 4, 2, and 2.
In the framework's account, this unequal distribution is the seed of the generation structure seen in particle physics. The axis with four flips is identified with the first generation, and the two axes with two flips with the second and third. A related theorem derives a ratio from these counts: the first generation's flip count is twice the second's, a relationship the framework connects to the Cabibbo angle, a parameter in the Standard Model that describes how quarks mix between generations.
The theorem does not claim that the cycle itself is physical, nor that the identification of axes with particle generations is derived. The cycle is a model, a definitional choice, and the axis-to-generation mapping is an interpretation placed on the proved counts. What is proved is purely combinatorial: a specific eight-step path on a cube flips its coordinates in a 4-2-2 pattern. The physical significance is a framework-level reading, not part of the formal result.
THEOREM generation_axis_coupling · IndisputableMonolith/Foundation/CycleOperator.lean
/-- The generation-axis coupling strength is proportional to the flip count.
Generation g (axis g) sees `bitFlipCount g` transitions per cycle. -/
theorem generation_axis_coupling :
GrayCodeChirality.bitFlipCount 0 = 4 ∧
GrayCodeChirality.bitFlipCount 1 = 2 ∧
GrayCodeChirality.bitFlipCount 2 = 2 :=
GrayCodeChirality.chiralityCert.flipCounts
THEOREM generation_axis_coupling · IndisputableMonolith/Foundation/CycleOperator.lean
/-- The generation-axis coupling strength is proportional to the flip count.
Generation g (axis g) sees `bitFlipCount g` transitions per cycle. -/
theorem generation_axis_coupling :
GrayCodeChirality.bitFlipCount 0 = 4 ∧
GrayCodeChirality.bitFlipCount 1 = 2 ∧
GrayCodeChirality.bitFlipCount 2 = 2 :=
GrayCodeChirality.chiralityCert.flipCounts
THEOREM large_cabibbo_from_coupling_ratio · IndisputableMonolith/Foundation/CycleOperator.lean
/-- The generation coupling ratio 2:1 between axis 0 and axes 1,2
is the kinematic origin of the large Cabibbo angle.
Qualitative prediction: because generation 1's axis is driven twice
as often, the overlap between mass and weak bases is large for the
1-2 mixing (Cabibbo) and smaller for the 2-3 mixing. -/
theorem large_cabibbo_from_coupling_ratio :
GrayCodeChirality.generationFlipCount 0 = 2 * GrayCodeChirality.generationFlipCount 1 :=
GrayCodeChirality.generation_coupling_asymmetry.1
What this page does not claim
The cycle operator is not claimed to be a physical object; it is a model. The identification of cube axes with particle generations is not proved; it is an interpretation. The theorem does not derive the numerical value of the Cabibbo angle.
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/CycleOperator.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 4-2-2 flip count lead to the specific mixing angles of the CKM matrix?
- What physical evidence supports identifying the cube's axes with particle generations?
- Does the framework derive the Cabibbo angle's numerical value, or only the ratio of flip counts?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM generation_axis_coupling · IndisputableMonolith/Foundation/CycleOperator.lean
/-- The generation-axis coupling strength is proportional to the flip count. Generation g (axis g) sees `bitFlipCount g` transitions per cycle. -/ theorem generation_axis_coupling : GrayCodeChirality.bitFlipCount 0 = 4 ∧ GrayCodeChirality.bitFlipCount 1 = 2 ∧ GrayCodeChirality.bitFlipCount 2 = 2 := GrayCodeChirality.chiralityCert.flipCountsThe theorem generation_axis_coupling states the counts exactly as 4, 2, and 2. generation_axis_coupling · IndisputableMonolith/Foundation/CycleOperator.leanTHEOREM generation_axis_coupling · IndisputableMonolith/Foundation/CycleOperator.lean
/-- The generation-axis coupling strength is proportional to the flip count. Generation g (axis g) sees `bitFlipCount g` transitions per cycle. -/ theorem generation_axis_coupling : GrayCodeChirality.bitFlipCount 0 = 4 ∧ GrayCodeChirality.bitFlipCount 1 = 2 ∧ GrayCodeChirality.bitFlipCount 2 = 2 := GrayCodeChirality.chiralityCert.flipCountsThe theorem is a proved property of the Gray code cycle itself, checked by the machine-checked library of formal theorems. generation_axis_coupling · IndisputableMonolith/Foundation/CycleOperator.leanTHEOREM large_cabibbo_from_coupling_ratio · IndisputableMonolith/Foundation/CycleOperator.lean
/-- The generation coupling ratio 2:1 between axis 0 and axes 1,2 is the kinematic origin of the large Cabibbo angle. Qualitative prediction: because generation 1's axis is driven twice as often, the overlap between mass and weak bases is large for the 1-2 mixing (Cabibbo) and smaller for the 2-3 mixing. -/ theorem large_cabibbo_from_coupling_ratio : GrayCodeChirality.generationFlipCount 0 = 2 * GrayCodeChirality.generationFlipCount 1 := GrayCodeChirality.generation_coupling_asymmetry.1A related theorem derives a ratio from these counts: the first generation's flip count is twice the second's. large_cabibbo_from_coupling_ratio · IndisputableMonolith/Foundation/CycleOperator.lean