Proof for 2^n ≥ n + 5 for n > 5 using mathematical induction

  • Thread starter Thread starter iamsmooth
  • Start date Start date
  • Tags Tags
    Inequality Proof
iamsmooth
Messages
103
Reaction score
0

Homework Statement



Prove that:
2^n \geq n + 5 for all integer n > 5

Homework Equations


n/a

The Attempt at a Solution


This is what I did, just want to see if it's right.
Using mathematical induction:

Basis step:
When n = 3,
2^3 \geq 3 + 5
Since 8 = 8, base case is proven

Inductive step:

Assume 2^k \geq k + 5 for all integers k greater or equal to n.

We want to prove that 2^{k+1} \geq k + 1 + 5

Using our assumption, 2^k \geq k + 5, I know that:

2(2^k) \geq 2(k + 5)

=2^{k+1} \geq 2k + 10

From here, if I can prove 2k+10 is greater or equal to k+6, then it will prove
2^{k+1} \geq k + 6

So:

2k+10 \geq k + 6

2k \geq k - 4

k \geq -4

Thus is proven because k was said to be greater or equal to n which is at least 3. So the inequality is true.

Since inductive step is proven, 2^3 \geq 3 + 5 must be true.

QEDDoes this proof stand? I haven't had much practice with inequalities... so I'm very unsure about this proof.

Thanks.
 
Last edited:
Physics news on Phys.org
Your reasoning is fine, but you should clean up your proof a bit. If you were told to prove the inequality for n > 5, and it evidently holds for n greater than or equal to 3, then the first thing you should do is state that this latter claim is the claim you are going to prove (even though it is a slightly "stronger" or better claim) by induction.

Under this claim, your base case is fine. For your inductive step, you should stick to one letter. If you are going to use k instead of n, which is fine since you are already given an n in the problem statement, then you actually need to say that the statement holds for k. This means that the inductive step is

Assume 2^k \geq k + 5 for all integers k \geq 3

(It doesn't matter whether you use k or n or some other letter to denote the natural number that you will increment, but referring to multiple letters in your proof might cause slight confusion)

Besides this, there is nothing wrong with the proof, except at the very end, you should state that the statement you proved is true, not just its base case (this may be a typo).
 
Yeah, that last bit was a typo. I'll post future proofs on here to see if I'm improving. Thanks for the tips, appreciate it.
 
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