inductive
definition
LimitativeResult
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Mathematics.GodelTheoremsStructuralFromRS on GitHub at line 20.
browse module
All declarations in this module, on Recognition.
explainer page
used by
formal source
17
18namespace IndisputableMonolith.Mathematics.GodelTheoremsStructuralFromRS
19
20inductive LimitativeResult where
21 | godelFirst
22 | godelSecond
23 | tarskiUndefinability
24 | churchUndecidability
25 | turingHalting
26 deriving DecidableEq, Repr, BEq, Fintype
27
28theorem limitativeResult_count :
29 Fintype.card LimitativeResult = 5 := by decide
30
31structure GodelTheoremsCert where
32 five_results : Fintype.card LimitativeResult = 5
33
34def godelTheoremsCert : GodelTheoremsCert where
35 five_results := limitativeResult_count
36
37end IndisputableMonolith.Mathematics.GodelTheoremsStructuralFromRS