In the first post, we only used inequalities at the final step of each proof, to establish
Here we have inequalities as the hypotheses of the theorem we want to prove.
Task
Given the facts
our task is to show
where
Maths
Let's pause and consider what's different about this task compared to the first chapter.
Here the conclusion holds for any
The first post's proof concluded with
Let's write out a proof.
Let's break it down:
- We first list the given facts,
and . - We start with the expression we want to prove something about,
. We say this is justified by the first given fact. - Our aim is to express
as a comparison to , so we want to resolve . - The second fact
gives us . - Finally, we say
, giving us the desired conclusion.
It is easy to misread the proof as stating
Code
The following Lean program proves
-- 05 - Simple Inequality
import Mathlib.Tactic
example {a b : ℕ} (h1 : b = a^2) (h2: a ≥ 2) : b ≥ 4 := by
calc
b = a^2 := by rw [h1]
_ ≥ (2)^2 := by rel [h2]
_ = 4 := by norm_num
The second hypothesis, the proof objective, and one of the lines in the proof body uses an inequality ≥ rather than an equality =. Aside from that, there's nothing structurally different about this proof.
The rel tactic is new. It is used to justify statements about relations, such as “greater than or equal to”.
Here the rel tactic is combining a^2 and the hypothesis a ≥ 2 to give a^2 ≥ (2)^2.
Easy Exercise
Write a Lean program to prove