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

StereoClass

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

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Chemistry.StereochemistryClassesFromConfigDim on GitHub at line 16.

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

  13
  14namespace IndisputableMonolith.Chemistry.StereochemistryClassesFromConfigDim
  15
  16inductive StereoClass where
  17  | enantiomers
  18  | diastereomers
  19  | cisTransGeometric
  20  | conformational
  21  | atropisomers
  22  deriving DecidableEq, Repr, BEq, Fintype
  23
  24theorem stereoClass_count : Fintype.card StereoClass = 5 := by decide
  25
  26structure StereochemistryCert where
  27  five_classes : Fintype.card StereoClass = 5
  28
  29def stereochemistryCert : StereochemistryCert where
  30  five_classes := stereoClass_count
  31
  32end IndisputableMonolith.Chemistry.StereochemistryClassesFromConfigDim