pith. machine review for the scientific record. sign in
inductive

HadronFamily

definition
show as:
view math explainer →
module
IndisputableMonolith.Mathematics.EightFoldWayFromRS
domain
Mathematics
line
33 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Mathematics.EightFoldWayFromRS on GitHub at line 33.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

  30theorem mesonOctet_eq_2cubeD : mesonOctetCount = 2 ^ 3 := by decide
  31theorem decuplet_eq_2_times_5 : baryonDecupletCount = 2 * 5 := by decide
  32
  33inductive HadronFamily where
  34  | pion | kaon | eta | rho | omega
  35  deriving DecidableEq, Repr, BEq, Fintype
  36
  37theorem hadronFamilyCount : Fintype.card HadronFamily = 5 := by decide
  38
  39structure EightFoldWayCert where
  40  octet_2cubeD : mesonOctetCount = 2 ^ 3
  41  decuplet_2times5 : baryonDecupletCount = 2 * 5
  42  five_families : Fintype.card HadronFamily = 5
  43
  44def eightFoldWayCert : EightFoldWayCert where
  45  octet_2cubeD := mesonOctet_eq_2cubeD
  46  decuplet_2times5 := decuplet_eq_2_times_5
  47  five_families := hadronFamilyCount
  48
  49end IndisputableMonolith.Mathematics.EightFoldWayFromRS