inductive
definition
GovernanceFailure
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Governance.GovernanceFailureModesFromConfigDim on GitHub at line 17.
browse module
All declarations in this module, on Recognition.
explainer page
used by
formal source
14
15namespace IndisputableMonolith.Governance.GovernanceFailureModesFromConfigDim
16
17inductive GovernanceFailure where
18 | capture
19 | fragmentation
20 | authoritarianDrift
21 | corruption
22 | legitimacyCollapse
23 deriving DecidableEq, Repr, BEq, Fintype
24
25theorem governanceFailure_count : Fintype.card GovernanceFailure = 5 := by decide
26
27structure GovernanceFailureCert where
28 five_failures : Fintype.card GovernanceFailure = 5
29
30def governanceFailureCert : GovernanceFailureCert where
31 five_failures := governanceFailure_count
32
33end IndisputableMonolith.Governance.GovernanceFailureModesFromConfigDim