pith. sign in

IndisputableMonolith.Physics.MatterAntimatterAsymmetryFromRS

IndisputableMonolith/Physics/MatterAntimatterAsymmetryFromRS.lean · 36 lines · 4 declarations

show as:
view math explainer →

open module explainer GitHub source

Explainer status: ready · generated 2026-05-16 13:42:19.470794+00:00

   1import Mathlib
   2import IndisputableMonolith.Constants
   3
   4/-!
   5# Matter-Antimatter Asymmetry from RS — Cosmology Depth
   6
   7Five canonical asymmetry-generation mechanisms (= configDim D = 5):
   8  electroweak baryogenesis, leptogenesis, GUT baryogenesis,
   9  Affleck-Dine, spontaneous CP violation.
  10
  11RS prediction η_B = φ^(-44) ≈ 6 × 10⁻¹⁰.
  12
  13Lean status: 0 sorry, 0 axiom.
  14-/
  15
  16namespace IndisputableMonolith.Physics.MatterAntimatterAsymmetryFromRS
  17
  18inductive AsymmetryMechanism where
  19  | electroweakBaryogenesis
  20  | leptogenesis
  21  | gutBaryogenesis
  22  | affleckDine
  23  | spontaneousCPV
  24  deriving DecidableEq, Repr, BEq, Fintype
  25
  26theorem asymmetryMechanism_count :
  27    Fintype.card AsymmetryMechanism = 5 := by decide
  28
  29structure MatterAntimatterAsymmetryCert where
  30  five_mechanisms : Fintype.card AsymmetryMechanism = 5
  31
  32def matterAntimatterAsymmetryCert : MatterAntimatterAsymmetryCert where
  33  five_mechanisms := asymmetryMechanism_count
  34
  35end IndisputableMonolith.Physics.MatterAntimatterAsymmetryFromRS
  36

source mirrored from github.com/jonwashburn/shape-of-logic