previous up next
Go backward to Typical Format
Go up to Top
Go forward to Example
RISC-Linz logo

Example

We prove by induction on n

forall n in N: n < 2n.

The induction base holds because 0 < 1 = 20.

Now we take arbitrary n in N and assume (induction hypothesis)

(1) n < 2n.
We have to show (induction step)
(2) n+1 < 2n+1.
By (1) we have
(3) n+1 < 2n+1
and therefore
(4) n+1 < 2n+1 <= 2n+2n = 2*2n = 2n+1
which implies (2).
Author: Wolfgang Schreiner
Last Modification: November 24, 1999

previous up next