Encyclopedia Foundation Foundation Quark Colors Not Four Colors
ARTICLE 3 claims 3 theorems
Foundation Quark Colors Not Four Colors
Quarks come in three colors, not four: here is what that exclusion means and what it does not prove.
Why not four colors
Quarks carry a property called color charge, the strong-force analogue of electric charge. In the standard model of particle physics, each quark flavor comes in three colors, usually called red, green, and blue. The number three is not arbitrary in the standard model; it is fixed by the mathematics of the SU(3) gauge symmetry that governs the strong interaction. The gauge group, the set of symmetry transformations that leaves the theory unchanged, has rank two, which forces exactly three color states.
The Recognition Science framework derives the same count from its own starting point. Within the framework, physical space has three dimensions, and the framework models each spatial axis as one independent direction in a discrete ledger, a record of recognition events. A three-dimensional cube has three pairs of opposite faces, and the framework identifies each face-pair with one color charge. The definition N_colors D = face_pairs D makes the count equal to the dimension by construction, and the theorem three_colors_from_D3 proves that for D = 3 the count is exactly 3.
Against that background, the declaration not_four_colors is a small exclusion theorem. It states that N_colors 3 is not equal to 4. Since the definition already fixes N_colors 3 = 3, the theorem rules out the alternative count of four colors in the framework's account. A companion theorem, not_two_colors, excludes 2 the same way. These are not empirical measurements; they are consequences of the framework's definitions and its derivation of three spatial dimensions.
The exclusion does not claim that the standard model's SU(3) symmetry is derived within the framework. The framework's library proves that its own color count is three, and it notes that this matches the standard model, but the gauge group itself is not constructed from the framework's axioms. The theorem also says nothing about color confinement, the phenomenon that quarks never appear alone, or about the eight gluons that mediate the strong force. It is a statement about a count, not about dynamics.
What the theorem changes is the shape of the framework's claim. It narrows the possible color counts to exactly one, the number three, within the framework's own terms. A reader can now see that the framework's three-dimensional derivation does not merely suggest three colors; it excludes the nearby alternatives by proof rather than by assumption.
THEOREM N_colors · three_colors_from_D3 · IndisputableMonolith/Foundation/QuarkColors.lean
/-- Number of color charges = number of cube face-pairs = D.
In the ledger, each independent "axis" of the D-cube carries one color. -/
def N_colors (D : ℕ) : ℕ := face_pairs D
/-- For D = 3, there are exactly 3 color charges. -/
theorem three_colors_from_D3 : N_colors 3 = 3 := by
unfold N_colors face_pairs
rfl
THEOREM not_four_colors · IndisputableMonolith/Foundation/QuarkColors.lean
theorem not_four_colors : N_colors 3 ≠ 4 := by norm_num [N_colors, face_pairs]
THEOREM not_two_colors · IndisputableMonolith/Foundation/QuarkColors.lean
/-- For D = 3, we cannot have 2 or 4 colors. -/
theorem not_two_colors : N_colors 3 ≠ 2 := by norm_num [N_colors, face_pairs]
What this page does not claim
The framework derives the SU(3) gauge symmetry of the standard model. The theorem explains color confinement or the eight gluons. The framework's three-dimensional derivation is a physical proof rather than a mathematical consequence of its own definitions.
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/QuarkColors.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 derive three spatial dimensions in the first place?
- What physical evidence fixes the number of quark colors in the standard model?
- Does the framework's color count relate to its derivation of three generations of matter?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM N_colors · three_colors_from_D3 · IndisputableMonolith/Foundation/QuarkColors.lean
/-- Number of color charges = number of cube face-pairs = D. In the ledger, each independent "axis" of the D-cube carries one color. -/ def N_colors (D : ℕ) : ℕ := face_pairs D/-- For D = 3, there are exactly 3 color charges. -/ theorem three_colors_from_D3 : N_colors 3 = 3 := by unfold N_colors face_pairs rflThe definition N_colors D = face_pairs D makes the count equal to the dimension by construction, and the theorem three_colors_from_D3 proves that for D = 3 the count is exactly 3. N_colors · three_colors_from_D3 · IndisputableMonolith/Foundation/QuarkColors.leanTHEOREM not_four_colors · IndisputableMonolith/Foundation/QuarkColors.lean
theorem not_four_colors : N_colors 3 ≠ 4 := by norm_num [N_colors, face_pairs]It states that N_colors 3 is not equal to 4. not_four_colors · IndisputableMonolith/Foundation/QuarkColors.leanTHEOREM not_two_colors · IndisputableMonolith/Foundation/QuarkColors.lean
/-- For D = 3, we cannot have 2 or 4 colors. -/ theorem not_two_colors : N_colors 3 ≠ 2 := by norm_num [N_colors, face_pairs]A companion theorem, not_two_colors, excludes 2 the same way. not_two_colors · IndisputableMonolith/Foundation/QuarkColors.lean