inductive
definition
NashType
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Economics.NashEquilibriumTypesFromConfigDim on GitHub at line 19.
browse module
All declarations in this module, on Recognition.
explainer page
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