✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Observe the following Lean code:
open nat
example : ∀ n : ℕ, 0 ≠ succ n :=
begin
assume n h,
contradiction,
end
Why the code ends up with contradiction to conclude
the steps?