Ask Experts Questions for FREE Help!
  Advanced
Register  |  Log in  
   Ask    
 Answer  
  Help  

Ask QuestionsprogressAnswer QuestionsprogressBuild ReputationprogressBecome an Expert
 
Free Answers in 3 Easy Steps

Register Now
3 Steps

At Ask Me Help Desk you can ask questions in any topic and have them answered for free by our experts. To ask questions or participate in answering them you must register for a free account. By registering you will be able to:
  • Get free answers from experts in any of our 300+ topics.
  • Accept money for answers that you provide.
  • Communicate privately with other members (PM).
  • See fewer ads.

Home > Science > Mathematics   »   proof by induction

 
Question Tools Search this Question Display Modes
Question
 
 
#1  
Old Sep 15, 2004, 10:29 AM
mutei
New Member
mutei is offline
 
Join Date: Sep 2004
Location:
Posts: 2
mutei See this member's comment history on his/her Profile page.
Send a message via ICQ to mutei
proof by induction

prove by induction that n! > 2^n for n>3

Reply With Quote
 
     

Answers
 
 
Old Sep 20, 2004, 05:20 AM   #2  
melanie.albury
New Member
melanie.albury is offline
 
Join Date: Aug 2004
Location:
Posts: 5
melanie.albury See this member's comment history on his/her Profile page.
Send a message via ICQ to melanie.albury
Re: proof by induction

Hi,

Proof by induction works in 2 steps.

First you must show that the expression is true for the initial value, which in your case is n = 4 (since n > 3).

Secondly, assume that the expression is true for n = k, then try to prove it is true for n = k + 1.

So for your problem:

Prove that n! > 2^n for all n > 3.

1. check for n = 4:
4! = 24 > 16 = 2^4 so this is ok.

2. assume true for n = k
ie. assume that k! > 2^k.
Now we want to prove that it is true for k+1
ie. want to prove (k+1)! > 2^(k+1)

(k+1)! = (k+1) * k! > (k+1) * 2^k (since we have assumed k! > 2^k)

Now k+1 > 4 (since k>3) so k+1 > 2
so (k+1) * 2^k > 2 * 2^k = 2^(k+1)

Put this altogether to get (k+1)! > 2^(k+1) which is what we wanted to prove.

so 1 & 2 are true, hence by the principles of mathematical induction n! > 2^n for all n>3.

Hope this helps. If there's anything you don't understand let me know. Usually questions like this have that little trick at the end, it just takes a little bit of fiddling around with algebra.

;D

Comments on this post
fizixx agrees: I think it was a great job!
  Reply With Quote
 
     
 
 
Old Jan 21, 2006, 08:05 PM   #3  
kruthi
New Member
kruthi is offline
 
Join Date: Jan 2006
Posts: 2
kruthi See this member's comment history on his/her Profile page.
mathematical induction

Hi ,

Could you Please prove me this solution


Determine by induction all the positive integers valuesof n for which n^3>2^n .prove your claim by mathematical induction.

Could you Please help me ASAP
  Reply With Quote
 
     
 
 
Old Jan 22, 2006, 01:21 AM   #4  
CroCivic91
Senior Member
CroCivic91 is offline
 
CroCivic91's Avatar
 
Join Date: Nov 2004
Location: Zagreb, Croatia
Posts: 730
CroCivic91 See this member's comment history on his/her Profile page.
Send a message via ICQ to CroCivic91 Send a message via Yahoo to CroCivic91
Let's make a table of values:
Code:
n | n^3 | 2^n --------------- 1 | 1 | 2 2 | 8 | 4 3 | 27 | 8 4 | 64 | 16 5 | 125 | 32

In that table we see that n^3 should be > 2^n for every n which is > 1

Let's prove it by induction:
Is it true for 2?
2^3 = 8 > 4 = 2^2
It is.

Presume that n^3 > 2^n for all whole numbers <= n

Now let's see what is the deal with (n+1)^3 and 2^(n+1)
(n+1)^3 = n^3 + 3 > 2^n + 3 (because n^3 > 2^n)
(n+1)^3 > 2^n + 3 > 2^n + 2 (because 3 > 2)
(n+1)^3 > 2^n + 2 = 2^(n+1)

So, we have proved that if n^3 > 2^n for some n, then (n+1)^3 > 2^(n+1), and since n^3 > 2^n for n=2, then, by the principle of mathematical induction, it is true for every whole number n which is larger than or equal to 2.
  Reply With Quote
 
     
 
 
Old Jan 22, 2006, 04:23 PM   #5  
dmatos
Full Member
dmatos is offline
 
Join Date: Jan 2006
Posts: 204
dmatos See this member's comment history on his/her Profile page.
Your math is a bit off, even if your method is correct:

(n+1)^3 = n^3 + 3n^2 + 3n + 1
Also, 2^(n+1) = 2*2^n, not 2^n + 2

There is also an upper bound on this inequality. I believe you have to show it is true for positive integers between 2 and 9 inclusive (10^3 = 1000, 2^10 = 1024).

I think the best way to go about this is to enumerate for all values of n up to 10, then postulate that it is not true for n>=10, and prove this by induction. To prove this, you must in fact prove the converse, ie, that for n>=10, 2^n > n^3. The first step is simple, show that it is true for n=10. Then assume it's true for all k<=n, show that it's true for k=n+1:

2^(n+1) = 2*2^n
(n+1)^3 = n^3 + 3n^2 + 3n + 1

How does this compare to 2*n^3? Take the cube root of both:

cubert(2)*n compared to n+1
(cubert(2)-1)*n copared to 1
n compared to 1/(cubert(2)-1)
n compared to approx 3.8473

This means that if n> 3.8473, 2n^3 > (n+1)^3
therefore, for n>= 10:
2^(n+1) = 2*2^n > 2n^3 (inductive assumption)
> (n+1)^3, or:
2^(n+1) > (n+1)^3

We've now proved that 2^n > n^3 for n>= 10 by induction.

Tah-dah!

Comments on this post
CroCivic91 agrees: Nicely said.
  Reply With Quote
 
     
 
 
Old Jan 22, 2006, 04:53 PM   #6  
CroCivic91
Senior Member
CroCivic91 is offline
 
CroCivic91's Avatar
 
Join Date: Nov 2004
Location: Zagreb, Croatia
Posts: 730
CroCivic91 See this member's comment history on his/her Profile page.
Send a message via ICQ to CroCivic91 Send a message via Yahoo to CroCivic91
Oh my God, my math really does suck.

Geez, where was I looking?! I'll stop giving answers here for a while, because i'm quite ashamed right now
  Reply With Quote
 
     
 
 
Old Feb 11, 2006, 06:36 PM   #7  
heris
New Member
heris is offline
 
Join Date: Feb 2006
Posts: 1
heris See this member's comment history on his/her Profile page.
let a>=2 prove that the sequence
x1= a^(1/2)
and
  Reply With Quote
 
     


Question Tools Search this Question
Search this Question:

Advanced Search
Display Modes

 
Similar Sponsors

Similar Questions
Question Asker Topic Answers Last Post
Mathematical Induction Reshu Math & Sciences 1 Aug 24, 2006 11:57 AM
Proof by induction and direct Ros Mathematics 1 Mar 30, 2006 09:05 PM
Proof by induction angora Mathematics 2 Sep 4, 2005 12:46 PM
Proof by Induction shelly89 Mathematics 3 Mar 23, 2005 09:04 PM
electromagnetic induction Zeboy Physics 1 Nov 11, 2004 08:26 AM




Copyright ©2003 - 2007, Ask Me Help Desk.
All times are GMT -8. The time now is 10:45 PM.

Content Relevant URLs by vBSEO 3.0.0 RC6 © 2006, Crawlability, Inc.