What are the steps to prove 2^n < n! using induction?

  • Context: Undergrad 
  • Thread starter Thread starter joshanders_84
  • Start date Start date
  • Tags Tags
    Induction Proof
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 82K views
joshanders_84
Messages
23
Reaction score
0
I'm to prove that for n>=4, 2^n < n! holds, but I don't know where to go after the inductive hypothesis that it holds for n>= 4 after showing it works for the base case (n = 4). Here are my steps so far:

2^(n+1) < (n+1)!
2*(2^n) < (n+1)(n!)

but I dont' know where to now! help is much appreciated, thanks.
Josh
 
Physics news on Phys.org
I understand that I'm supposed to get there, but I don't see the *proper* first step to take, as the things I have tried haven't gotten me there.
 
Well, for induction, you usually end up proving the n=1 (or in this case n=4) case first. You've got that done.

Then you need to identify your indictive hypothesis:
e.g.
[tex]n!>2^n[/tex]
and
[tex]n > 4[/tex]

In class the proof might look something like this:
[tex](n+1)!=n! (n+1)[/tex]
from the inductive hypothesis we have
[tex]n! (n+1) > 2^n (n+1)[/tex]
since [tex]n>1[/tex] we have
[tex]2^n(n+1) > 2^n(2)[/tex]
and
[tex]2^n(2) = 2^{n+1}[/tex]
Now, we can string it all togther to get the inequality:
[tex](n+1)!=n! (n+1) > 2^n(n+1) > 2^n(2) =2^{n+1}[/tex]
[tex](n+1)! > 2^{n+1}[/tex]

In general, it's worth trying to figure out wether it 'safe'
to multiply
[tex]n!>2^n[/tex]
by
[tex]n+1 > 2[/tex]
while preserving the inequality.
Which is really what I wanted to do in my head. As soon as you are sure it is legitemate, you're done.
 
I saw a great walkthrough of this proof on inductiveproofs.com. It's an e course about how to write inductive proofs. Very helpful!