theorem
proved
term proof
constant_not_recognizer
show as:
view Lean formalization →
formal statement (Lean)
115theorem constant_not_recognizer (C : Type*) [Nonempty C] (e : E) :
116 ¬∃ c₁ c₂ : C, (fun _ : C => e) c₁ ≠ (fun _ : C => e) c₂ := by
proof body
Term-mode proof.
117 push_neg
118 intros
119 rfl
120
121/-! ## Module Status -/
122