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

KinshipSystem

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

open explainer

Read the cached plain-language explainer.

open lean source

IndisputableMonolith.Anthropology.KinshipStructuresFromConfigDim 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.Anthropology.KinshipStructuresFromConfigDim
  17
  18inductive KinshipSystem where
  19  | hawaiian
  20  | eskimo
  21  | iroquois
  22  | sudanese
  23  | omaha
  24  deriving DecidableEq, Repr, BEq, Fintype
  25
  26theorem kinshipSystem_count : Fintype.card KinshipSystem = 5 := by decide
  27
  28structure KinshipStructureCert where
  29  five_systems : Fintype.card KinshipSystem = 5
  30
  31def kinshipStructureCert : KinshipStructureCert where
  32  five_systems := kinshipSystem_count
  33
  34end IndisputableMonolith.Anthropology.KinshipStructuresFromConfigDim