Use induction to prove that $n^ 2 > 5n − 7$ for all $n \in \mathbb{Z}, n ≥ 2$.
I can't seem to figure out how to prove this. This is what I did so far:
Base case:
Let $n=2$. Then $n^2=4$ and $5(2)-7=3$.
$n^2 - 5n + 7 = 4 - 10 + 7 = 1\in\Bbb{N}$
Hence $n^2 > 5n - 7$.
Inducton step:
Let $n\ge2$ and assume $n^2 > 5n - 7$.
We want to show $(n+1)^2 > 5(n+1) - 7$.
$(n+1)^2 - 5(n+1) + 7 = n^2 + 2n + 1 - 5n - 5 +7$
$(n^2 - 5n + 7) + 2n - 4$
I don't know how to finish the proof.