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

InflationModel

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

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Physics.InflationaryCosmologyFromRS on GitHub at line 24.

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

  21namespace IndisputableMonolith.Physics.InflationaryCosmologyFromRS
  22open Constants
  23
  24inductive InflationModel where
  25  | starobinsky | natural | higgs | chaotic | axionMonodromy
  26  deriving DecidableEq, Repr, BEq, Fintype
  27
  28theorem inflationModelCount : Fintype.card InflationModel = 5 := by decide
  29
  30/-- E-folds N_e = 44 (baryonRung). -/
  31def Nefolds : ℕ := 44
  32
  33structure InflationaryCosm where
  34  five_models : Fintype.card InflationModel = 5
  35  Nefolds_eq : Nefolds = 44
  36
  37def inflationaryCosmCert : InflationaryCosm where
  38  five_models := inflationModelCount
  39  Nefolds_eq := rfl
  40
  41end IndisputableMonolith.Physics.InflationaryCosmologyFromRS