0

I'm told to show that $2^n < n!$ using induction

This is my attempt at it:

BC: $n=4, 2^4 = 16 < 4!$

IH: n = k, $2^k < k!$

IS: try n = k+1

I'm told to only work from one side, so I try the left side:

2^(k+1)

But I'm stuck here, any ideas?

EDEDE
  • 33

3 Answers3

2

It is true only for $n\ge 4$.

Hint for the inductive step:

$2^{k+1}=2\cdot2^k<2\cdot k!$, so it is enough to prove $2\cdot k!\le (k+1)!$.

Bernard
  • 179,256
  • Could you expand on that, I'm not sure how to follow from there? – EDEDE Jan 24 '16 at 04:03
  • If $2\cdot k!\le (k+1)!$ and $2^{k+1}<2\cdot 2^k$, the inductive step will follow by transitivity. Now $2\cdot k!\le (k+1)!=(k+1) ,k! \iff 2\le k+1$, i.e. $;k\ge 1$. – Bernard Jan 24 '16 at 04:13
1

You have $2^k<k!$ by induction hypotheses. Then $2^k(k+1)<(k+1)k!=(k+1)!$, if $k>3$ you have that $2^{k+1}<(k+1)2^k$ and the result follows.

EQJ
  • 4,499
1

This is true for $n \geq 4$.

Base step: $2^4 < 4!$ i.e. $16 < 24$ true!

Induction Step: suppose $2^{n-1} < (n-1)!$. Since $2<n$ you can multilpy the left side for $2$ and the right side for $n$ keeping the inequality true, so you get

$2 \cdot 2^{n-1} < n(n-1)!$ i.e. $2^n < n!$.

Maffred
  • 4,166