Proving 2^n > n^3 for n >= 10 using induction

  • Thread starter Thread starter snapgilmore
  • Start date Start date
  • Tags Tags
    Induction Proof
snapgilmore
Messages
2
Reaction score
0

Homework Statement



Prove that 2^n > n^3 for every integer n >= 10

Homework Equations



a) Prove for 10,
b) assume for k
c) inductive step for k+1

The Attempt at a Solution



a)
2^10 = 1024
10^3 = 1000
1024>1000

b)Assume
2^k > k^3

c) 2^(k+1) > (k+1)^3
(2)(2^k) > (k+1)^3
(2^k) > ((k+1)^3)/2

and from here I'm having trouble solving for k >= 10.
Any help would be appreciated, thanks.
 
Physics news on Phys.org
snapgilmore said:

Homework Statement



Prove that 2^n > n^3 for every integer n >= 10

Homework Equations



a) Prove for 10,
b) assume for k
c) inductive step for k+1

The Attempt at a Solution



a)
2^10 = 1024
10^3 = 1000
1024>1000

b)Assume
2^k > k^3

c) 2^(k+1) > (k+1)^3
The inequality above is what you need to show. You can't just assert it.
snapgilmore said:
(2)(2^k) > (k+1)^3
(2^k) > ((k+1)^3)/2
Your work should look like this:
2k+1 = 2 * 2k > 2 * k3 ...

You then need to show that 2k3 > (k + 1)3, at least for k ≥ 10.

It suffices to show that 2k3/(k + 1)3 > 1, which can be done using calculus.
snapgilmore said:
and from here I'm having trouble solving for k >= 10.
Any help would be appreciated, thanks.
 
Last edited:
Can you elaborate on how its enough to show (2k^3)/(k+1)^3 >1 ? I thought you needed to end up at k >=10?
 
snapgilmore said:
Can you elaborate on how its enough to show (2k^3)/(k+1)^3 >1 ? I thought you needed to end up at k >=10?
You showed that the inequality holds for n = 10.

Then you show that if the inequality holds for n = k, where k is any number greater than or equal to 10, then the inequality holds for n = k+1 .

By doing this, you show that if it's true for n=10, then it's true for n=11 .
If it's true for n=11, then it's true for n=12 .

If it's true for n=12, then it's true for n=13 .

If it's true for n=13, then it's true for n=14 .

If it's true for n=14, then it's true for n=15 .

...​
So assume that 2k > k3, for some integer k ≥ 10 .

From that show that 2k+1 > (k+1)3 .
 
snapgilmore said:
Can you elaborate on how its enough to show (2k^3)/(k+1)^3 >1 ?
(2k3)/(k+1)3 >1 is equivalent to 2k3 > (k + 1)3.
snapgilmore said:
I thought you needed to end up at k >=10?
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top