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

NashType

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

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Economics.NashEquilibriumTypesFromConfigDim on GitHub at line 19.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

used by

formal source

  16
  17namespace IndisputableMonolith.Economics.NashEquilibriumTypesFromConfigDim
  18
  19inductive NashType where
  20  | purePsy
  21  | mixedStrategy
  22  | subgamePerfect
  23  | tremblingHandPerfect
  24  | properEquilibrium
  25  deriving DecidableEq, Repr, BEq, Fintype
  26
  27theorem nashType_count : Fintype.card NashType = 5 := by decide
  28
  29structure NashEquilibriumCert where
  30  five_types : Fintype.card NashType = 5
  31
  32def nashEquilibriumCert : NashEquilibriumCert where
  33  five_types := nashType_count
  34
  35end IndisputableMonolith.Economics.NashEquilibriumTypesFromConfigDim