Tortoise and Hare are racing.
Tortoise moves one meter every minute.
Hare moves $2n − 1$ meters on the nth minute (which is equivalent to $n^2$ meters in the first minutes).
Prove that no matter how many meters ahead Tortoise starts, Hare will catch up given enough time.
This is my idea... Let $c$ be the head start distance tortoise gotten in meters. Let $z$ be the distance moved at nth minute.
For tortoise, @nth minute, $c$ + $z$. So e.g., after 10 minutes with 5$m$ head start, tortoise has moved 5$m$ + 10$m$ = 15$m$.
For hare, now I'm a bit confused.. how does $2n-1$ = $n^2$ meters in the first nth minute? This is how I picture it. At the 10th minute, hare moved 2(10)-1 = 19$m$ which means he COMPLETED 19metres at 10th minute but is COMPLETING the 20th meter at 10 minutes. But as for first nth minute, let's say $n$ = 10, he's already COMPLETED 20metres.
Given n minutes, $$z^2 > c + z$$ where z^2 is distance moved by hare after n minutes.
Then we can have $$z^2 - z > c = z(z-1) > c$$
The goal is so that I can choose ANY c and that after a certain time, the hare will catch up.
Say $c$ = 20 $n$ = 5, 5(5-1) > 20
Now, how could I prove it formally? Note, the class being taught up until now has been basic proofs (up to contradiction), now just starting on induction and sequences.