We've just seen how a lemma can be applied to a proof goal.
Here we'll see how lemmas can be applied to hypotheses too.
Task
Given a natural number
This is the very same task as the previous post.
Maths
We're going to use the same lemma we used in the previous chapter. For natural numbers
Previously we considered the proof goal
This time we'll consider the hypothesis
The following diagram makes clear this difference. We can see the lemma builds half a bridge from our hypothesis. Do compare it to the diagram from the previous post.
Let's write a proof that applies the lemma to the hypothesis.
Again, this may look a little over-done, but the small steps will help us write a Lean proof.
- We start with the hypothesis
, and our proof objective . - We know about a lemma (3) applicable to natural numbers, that if
then . - The lemma's antecedent
matches our hypothesis (1), which immediately gives us .
Let’s explain some terminology. In an implication
Code
The following Lean program proves that a natural number
-- 14 - Lemma: Not Equal from Less Than
import Mathlib.Tactic
example {n : ℕ} (h : n < 5) : n ≠ 5 := by
apply ne_of_lt at h
exact h
The Lean proof is almost exactly the same as the previous post's proof.
The only difference is the lemma ne_of_lt is pointed at the hypothesis h by adding at h.
This small change is significant. It changes the hypothesis h from h : n < 5 to h : n ≠ 5, as we'll see in the Infoview.
This new hypothesis exactly matches the proof goal, so exact h works just as before to complete the proof.
Infoview
Placing the cursor before apply ne_of_lt at h shows the original hypothesis.
n : ℕ
h : n < 5
⊢ n ≠ 5
Moving the cursor to the beginning of the next line after apply ne_of_lt at h shows the hypothesis has been replaced.
n : ℕ
h : n ≠ 5
⊢ n ≠ 5
Easy Exercise
Write a Lean program to prove
Use the same the lemma for “not equal from greater than” you found for the last post's exercise, and apply it to the hypothesis.