theorem
proved
term proof
self_ref_not_configuration
show as:
view Lean formalization →
formal statement (Lean)
103theorem self_ref_not_configuration :
104 ∀ c : ℝ, ¬((defect c = 0) ↔ ¬(defect c = 0)) := by
proof body
Term-mode proof.
105 intro c h
106 by_cases hd : defect c = 0
107 · exact (h.mp hd) hd
108 · exact hd (h.mpr hd)
109
110/-! ## The Extended Analysis: RSTrue, RSFalse, and Outside -/
111
112/-- RS-truth predicate (stabilization). -/