1

In Rosen's book Discrete Mathematics and Its Applications, 8th Edition it is mentioned that:

You may be surprised that mathematical induction and strong induction are equivalent. That is, each can be shown to be a valid proof technique assuming that the other is valid.

One of the examples given for strong induction in the book is the following:

Suppose we can reach the first and second rungs of an infinite ladder, and we know that if we can reach a rung, then we can reach two rungs higher … prove that we can reach every rung using strong induction

If the two proof techniques are "equivalent", how can I prove the above example using mathematical induction (as opposed to strong induction)?

Sandeep
  • 269

1 Answers1

0

Just because they're equivalent doesn't mean you can easily swap between them - the point of strong induction is that it lets you skip a lot of steps in your proof.

However, in this case you could do something like this:

Let $P(n)$ be the statement "I can reach the $2n$-th and $2n+1$-th rungs of the ladder." Then we shall prove that $P(n)$ is true for all integer $n \geq 0$.

As the base case, note that $P(n)$ = "I can reach the 1st and 2nd rungs of the ladder", which is given.

Then, assume that $P(n)$ is true for some arbitrary $n$. Then knowing I can always reach two rungs higher, I can reach the $2n+2$-th and $2n+3$-th rungs, but since $2n+2 = 2(n+1)$ and $2n+3 = 2(n+1) + 1$, this means that $P(n+1)$ is true, and our proof is complete.

ConMan
  • 24,300