We have the predicate $P(n) = 10^0 + 10^1 + 10^2 + ... + 10^n < 10^{n+1}$, $n >= 0 $
To prove by induction we need to check the base case $P(0)$, and after that we have our induction hypotheses where we assume that the predicate is true for some $k = n$. After that we need to show that if $P(k)-->P(k+1)$ then it's true for all $n>=0$.
Base case: $P(0) = 10^0 = 1 < 10^1 = 10$ TRUE
Induction hypothesis: $10^0 + 10^1 + 10^2 + ... + 10^k < 10^{k+1}$, for some $k = n$.
Induction step $P(k+1)$: try to prove this
$10^0 + 10^1 + 10^2 + ... + 10^k + 10^{k+1} < 10^{n+2}$
...
That's where I'm lost. How can I show that $10^0 + 10^1 + 10^2 + ... + 10^k + 10^{k+1}$ is less than it's successor?
... I think I solved it. Thank you abiessu.
$10^0 + 10^1 + 10^2 + ... + 10^k + 10^{k+1} < 10^{k+1} + 10^{k+1}$
Know I need to show that $10^{k+1} + 10^{k+1}$ < $10^{k+2}$
$10^{k+1} + 10^{k+1} = 2*10^{k+1}$
$10^{k+2} = 10*10^{k+2}$
So we show that $2*10^{k+1} < 10*10^{k+2}$
$10^0 + 10^1 + 10^2 + ... + 10^k + 10^{k+1} < 10^{k+1} + 10^{k+1} = 2*10^{k+1} < 10^{k+2} = 10*10^{k+2}$
Therefore we can conclude our proof by mathematical induction that $10^0 + 10^1 + 10^2 + ... + 10^k + 10^{k+1} < 10^{k+2} = 10*10^{k+2}$