3

Step 1: prove for $n = 1$

1 < 2

Step 2:

$n+1 < 2 \cdot 2^n$

$n < 2 \cdot 2^n - 1$

$n < 2^n + 2^n - 1$

The function $2^n + 2^n - 1$ is surely higher than $2^n - 1$ so if

$n < 2^n$ is true (induction step), $n < 2^n + 2^n - 1$ has to be true as well.

Is this valid argumentation?

3 Answers3

7

$$n+1<n+n<2^n+2^n=2^{n+1}$$

bateman
  • 4,000
4

Yes. Your method works. Alternate: $$ n + 1 < 2n < 2 \cdot 2^n = 2^{n+1}, $$ as desired.

2

We want to show that $k+1 < 2^{k+1}$, from the original equation, replacing $n$ with $k$: $$k + 1 < 2^k + 1$$ Thus, one needs to show that: $$2^k + 1 < 2^{k + 1}$$ to complete the proof.

We know that $1 < 2^k$ for $k ≥ 1$. Adding $2^k$ to both sides: $$2^k + 1 < 2^k + 2^k = 2^{k+1},$$ which shows that $n < 2^n$.

daOnlyBG
  • 2,711
Alex
  • 21