Mathematical induction proof for integers

discrete mathematicsinductionsolution-verification

Use mathematical induction to prove that $n! > 4^n$ for $n \geq 9$.

My attempt:

  1. Base case: For $n=9$, we have $9! = 362880$ and $4^9 = 262144$

  2. Since $9! > 4^9$, the statement is true for $n=9$

  3. Inductive hypothesis: Assume that $k! > 4^k$ for some positive integer $k \geq 9$

  4. Inductive step: We want to show that $(k+1)! > 4^{k+1}$

  5. We start with $(k+1)!$, which can be written as $(k+1) \cdot k!$

  6. Using the inductive hypothesis, we know that $k! > 4^k$

  7. Substituting this into the expression for $(k+1)!$, we get $(k+1)! > (k+1) \cdot 4^k$

  8. To complete the proof, we need to show that $(k+1) \cdot 4^k > 4^{k+1}$

  9. Dividing both sides by $4^k$, we get $k+1 > \frac{4^{k+1}}{4^k}$

  10. Since $k \geq 9$, we can plug in $k=9$ , through calculating $9+1 > \frac{4^{9+1}}{4^9}$ , and we get $10 > 4$

  11. Since $(k+1)$ is greater than this value, we have $(k+1) \cdot 4^k > 4^{k+1}$

  12. Therefore, we have shown that $(k+1)! > 4^{k+1}$, which completes the inductive step

  13. By the principle of mathematical induction, we have proven that $n! > 4^n$ for all $n \geq 9$

Best Answer

No, your proof is not correct. You are correct up to this point:

$$(k+1)\cdot 4^k > 4^{k+1}$$

However, you then claim that by dividing both sides by $4^k$, you get

$$k+1>\frac{4}{4^k}$$ which is not true. In fact, dividing both sides by $4^k$, you get

$$k+1 > \frac{4^{k+1}}{4^k}\neq \frac{4}{4^k}$$

Related Question