Proof by induction: $2^n > n$

94 Views Asked by At

Base is $2^1 > 1$.

Now we assume $2^n > n$ and try to obtain $2^{n+1} > (n+1)$.

If I can use $2^n > 1$, I could just add that to $2^n > n$ and get $2^{n+1} > (n+1)$ but I don't know how to obtain the form $2^n > 1$ in order to use it. Is there a different approach to proving this instead of directly trying to deduce to a specific form $2^{n+1} > (n+1)$?

1

There are 1 best solutions below

0
On BEST ANSWER

If $n = 1$, then $2^n = 2^1 = 2$, and $n = 1$, so the inequality holds true for $n = 1$.

For the induction hypothesis, we assume $2^k > k$ for some $k > 1$. However, $$2^{k + 1} = (2^k)(2^1) = (2^k)(2) $$ The induction hypothesis gives $$2^{k + 1} = (2^k)(2^1) = (2^k)(2)> k(2) = 2k = k + k $$ Since $k \geq 1 $, $$2^{k + 1}> k + 1 $$ Q.E.D.