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

InflationModel

definition
show as:
view math explainer →
module
IndisputableMonolith.Cosmology.InflationModelsFromConfigDim
domain
Cosmology
line
18 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Cosmology.InflationModelsFromConfigDim on GitHub at line 18.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

depends on

used by

formal source

  15
  16namespace IndisputableMonolith.Cosmology.InflationModelsFromConfigDim
  17
  18inductive InflationModel where
  19  | chaoticQuadratic
  20  | newInflationPlateau
  21  | hybrid
  22  | naturalAxionLike
  23  | alphaAttractor
  24  deriving DecidableEq, Repr, BEq, Fintype
  25
  26theorem inflationModel_count : Fintype.card InflationModel = 5 := by decide
  27
  28structure InflationModelsCert where
  29  five_models : Fintype.card InflationModel = 5
  30
  31def inflationModelsCert : InflationModelsCert where
  32  five_models := inflationModel_count
  33
  34end IndisputableMonolith.Cosmology.InflationModelsFromConfigDim