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

SelectivityRegime

definition
show as:
view math explainer →
module
IndisputableMonolith.Chemistry.CatalystSelectivityFromJCost
domain
Chemistry
line
19 · github
papers citing
none yet

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Chemistry.CatalystSelectivityFromJCost on GitHub at line 19.

browse module

All declarations in this module, on Recognition.

explainer page

A cached Ask Recognition explainer exists for this declaration.

open explainer

used by

formal source

  16
  17namespace IndisputableMonolith.Chemistry.CatalystSelectivityFromJCost
  18
  19inductive SelectivityRegime where
  20  | perfect
  21  | primaryDominant
  22  | branching
  23  | mixed
  24  | nonSelective
  25  deriving DecidableEq, Repr, BEq, Fintype
  26
  27theorem selectivityRegime_count :
  28    Fintype.card SelectivityRegime = 5 := by decide
  29
  30structure CatalystSelectivityCert where
  31  five_regimes : Fintype.card SelectivityRegime = 5
  32
  33def catalystSelectivityCert : CatalystSelectivityCert where
  34  five_regimes := selectivityRegime_count
  35
  36end IndisputableMonolith.Chemistry.CatalystSelectivityFromJCost