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

LimitativeResult

definition
show as:
view math explainer →
module
IndisputableMonolith.Mathematics.GodelTheoremsStructuralFromRS
domain
Mathematics
line
20 · github
papers citing
none yet

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

A cached Ask Recognition explainer exists for this declaration.

open explainer

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