inductive
definition
SelectivityRegime
show as:
view math explainer →
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
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