Encyclopedia Mathematics Mathematics Eight Fold Way From Rs Hadron Family Count
ARTICLE 4 claims 3 theorems 1 model
Mathematics Eight Fold Way From Rs Hadron Family Count
A machine-checked theorem counts five hadron families, tying the famous eight-fold way to a deeper arithmetic pattern.
The five hadron families
In particle physics, the eight-fold way organizes mesons and baryons into geometric patterns: octets of eight and decuplets of ten. Murray Gell-Mann introduced this scheme in 1961, and it led directly to the quark model. The octet and decuplet counts are empirical facts about nature, discovered through scattering experiments and classification of newly found particles.
The Recognition Science framework examines these same numbers through a different lens. Its machine-checked library of formal theorems contains a declaration called hadronFamilyCount. This is a theorem, not a new measurement. It states that the number of canonical hadron families, defined as the five types pion, kaon, eta, rho, and omega, equals 5. The proof is a direct computation: the framework defines an inductive type with exactly those five constructors, and the theorem verifies by deciding that the type has cardinality 5.
The framework connects this count to its own structure. In Recognition Science, the number 5 is the configuration dimension at spatial dimension 3, written configDim D. The five families match that dimension. The framework also proves two related arithmetic facts: the meson octet count equals 2^3, and the baryon decuplet count equals 2 × 5. These are simple identities, checked by computation, not derived from physical data.
What the declaration does not claim is important. It does not claim that the five named families are the only hadrons, or that the framework predicts which particles exist. It does not claim that the eight-fold way itself is derived from Recognition Science. The theorem only asserts a counting statement about a formal object defined inside the framework. The physical interpretation, that these five families correspond to real mesons and baryons, is a modeling choice, not a proved result.
The value of the declaration is arithmetic clarity. It shows that the numbers 8, 10, and 5, familiar from particle physics, reappear as simple expressions in the framework's own language. Whether that reappearance carries physical meaning is a separate question, one the theorem itself leaves open.
THEOREM hadronFamilyCount · IndisputableMonolith/Mathematics/EightFoldWayFromRS.lean
theorem hadronFamilyCount : Fintype.card HadronFamily = 5 := by decide
THEOREM mesonOctet_eq_2cubeD · IndisputableMonolith/Mathematics/EightFoldWayFromRS.lean
theorem mesonOctet_eq_2cubeD : mesonOctetCount = 2 ^ 3 := by decide
THEOREM decuplet_eq_2_times_5 · IndisputableMonolith/Mathematics/EightFoldWayFromRS.lean
theorem decuplet_eq_2_times_5 : baryonDecupletCount = 2 * 5 := by decide
MODEL HadronFamily · IndisputableMonolith/Mathematics/EightFoldWayFromRS.lean
inductive HadronFamily where
| pion | kaon | eta | rho | omega
deriving DecidableEq, Repr, BEq, Fintype
What this page does not claim
The theorem does not claim that the five families are the only hadrons that exist. The theorem does not claim that the eight-fold way itself is derived from Recognition Science. The physical identification of the five families with real particles is a modeling choice, not a proved result.
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/Mathematics/EightFoldWayFromRS.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 evidence connects the five named families to the framework's configuration dimension?
- Does the framework derive the octet and decuplet counts from first principles, or only restate them?
- How does the framework's arithmetic pattern relate to the quark model's explanation of the eight-fold way?
MACHINE LAYER · GROUNDED CLAIM TABLE · CLICK TO EXPAND
THEOREM hadronFamilyCount · IndisputableMonolith/Mathematics/EightFoldWayFromRS.lean
theorem hadronFamilyCount : Fintype.card HadronFamily = 5 := by decidehadronFamilyCount is a theorem that states the number of canonical hadron families equals 5. hadronFamilyCount · IndisputableMonolith/Mathematics/EightFoldWayFromRS.leanTHEOREM mesonOctet_eq_2cubeD · IndisputableMonolith/Mathematics/EightFoldWayFromRS.lean
theorem mesonOctet_eq_2cubeD : mesonOctetCount = 2 ^ 3 := by decideThe meson octet count equals 2^3. mesonOctet_eq_2cubeD · IndisputableMonolith/Mathematics/EightFoldWayFromRS.leanTHEOREM decuplet_eq_2_times_5 · IndisputableMonolith/Mathematics/EightFoldWayFromRS.lean
theorem decuplet_eq_2_times_5 : baryonDecupletCount = 2 * 5 := by decideThe baryon decuplet count equals 2 × 5. decuplet_eq_2_times_5 · IndisputableMonolith/Mathematics/EightFoldWayFromRS.leanMODEL HadronFamily · IndisputableMonolith/Mathematics/EightFoldWayFromRS.lean
inductive HadronFamily where | pion | kaon | eta | rho | omega deriving DecidableEq, Repr, BEq, FintypeThe five families are defined as pion, kaon, eta, rho, and omega. HadronFamily · IndisputableMonolith/Mathematics/EightFoldWayFromRS.lean