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

firstMagicNumber

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

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Physics.NuclearPhysicsDepthFromRS 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

formal source

  30
  31/-- Nuclear magic numbers: 2, 8, 20, 28, 50, 82, 126.
  32    8 = 2³, 82 < gap45 × 2 = 90. -/
  33def firstMagicNumber : ℕ := 2
  34def secondMagicNumber : ℕ := 8
  35theorem secondMagic_eq_2cubed : secondMagicNumber = 2 ^ 3 := by decide
  36
  37structure NuclearPhysicsDepthCert where
  38  five_categories : Fintype.card NuclearStructureCategory = 5
  39  second_magic_cube : secondMagicNumber = 2 ^ 3
  40
  41def nuclearPhysicsDepthCert : NuclearPhysicsDepthCert where
  42  five_categories := nuclearStructureCategoryCount
  43  second_magic_cube := secondMagic_eq_2cubed
  44
  45end IndisputableMonolith.Physics.NuclearPhysicsDepthFromRS