inductive
definition
ReactionMechanism
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Chemistry.ReactionMechanismsFromConfigDim on GitHub at line 17.
browse module
All declarations in this module, on Recognition.
explainer page
used by
formal source
14
15namespace IndisputableMonolith.Chemistry.ReactionMechanismsFromConfigDim
16
17inductive ReactionMechanism where
18 | sn1
19 | sn2
20 | e1
21 | e2
22 | pericyclic
23 deriving DecidableEq, Repr, BEq, Fintype
24
25theorem reactionMechanism_count :
26 Fintype.card ReactionMechanism = 5 := by decide
27
28structure ReactionMechanismsCert where
29 five_mechanisms : Fintype.card ReactionMechanism = 5
30
31def reactionMechanismsCert : ReactionMechanismsCert where
32 five_mechanisms := reactionMechanism_count
33
34end IndisputableMonolith.Chemistry.ReactionMechanismsFromConfigDim