structure
definition
def or abbrev
GeneralSelfRefQuery
show as:
view Lean formalization →
formal statement (Lean)
124structure GeneralSelfRefQuery where
125 config : ℝ
126 /-- c "asserts" a proposition -/
127 asserts : Prop
128 /-- That proposition is ¬RSStab(c) -/
129 encodes_negation : asserts ↔ ¬RSStab config
130 /-- c is "correct" if what it asserts matches its stabilization status -/
131 correctness : RSStab config ↔ asserts
132
133/-- **THEOREM 2**: General self-referential queries are contradictory.
134
135 The correctness condition and encoding condition together imply:
136 RSStab(c) ↔ asserts ↔ ¬RSStab(c)
137
138 This is P ↔ ¬P, which is impossible. -/