theorem
proved
term proof
MetaPrinciple
show as:
view Lean formalization →
formal statement (Lean)
39theorem MetaPrinciple (X : Type*) :
40 (∃ (R : X → X → Prop), ∃ x, R x x) → Nonempty X := by
proof body
Term-mode proof.
41 intro ⟨_, x, _⟩
42 exact ⟨x⟩
43
44/-- Constructive version: recognition implies existence. -/