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

DecayMode

definition
show as:
view math explainer →
module
IndisputableMonolith.Physics.RadioactiveDecayTypesFromConfigDim
domain
Physics
line
15 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Physics.RadioactiveDecayTypesFromConfigDim on GitHub at line 15.

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

  12
  13namespace IndisputableMonolith.Physics.RadioactiveDecayTypesFromConfigDim
  14
  15inductive DecayMode where
  16  | alpha
  17  | betaMinus
  18  | betaPlus
  19  | gamma
  20  | spontaneousFission
  21  deriving DecidableEq, Repr, BEq, Fintype
  22
  23theorem decayMode_count : Fintype.card DecayMode = 5 := by decide
  24
  25structure RadioactiveDecayCert where
  26  five_modes : Fintype.card DecayMode = 5
  27
  28def radioactiveDecayCert : RadioactiveDecayCert where
  29  five_modes := decayMode_count
  30
  31end IndisputableMonolith.Physics.RadioactiveDecayTypesFromConfigDim