Prove n! > 2^n for n ≥ 4 by induction

easy 4 min read

Question

Prove by mathematical induction that n!>2nn! > 2^n for all integers n4n \geq 4.


Solution — Step by Step

Claim: P(n)P(n): n!>2nn! > 2^n for all n4n \geq 4.

Mathematical induction requires two steps:

  1. Base case: Verify P(n)P(n) holds for the starting value n=4n = 4.
  2. Inductive step: Assume P(k)P(k) is true for some k4k \geq 4 (inductive hypothesis), then prove P(k+1)P(k+1) is also true.

LHS: 4!=244! = 24

RHS: 24=162^4 = 16

Since 24>1624 > 16, we have 4!>244! > 2^4

The base case holds.

Assume that k!>2kk! > 2^k for some k4k \geq 4.

This is our inductive hypothesis — we take it as given for the purpose of this step and use it to prove the next case.

We need to show: (k+1)!>2k+1(k+1)! > 2^{k+1}

Start with the left side:

(k+1)!=(k+1)×k!(k+1)! = (k+1) \times k!

Since k4k \geq 4, we have k+15>2k+1 \geq 5 > 2. So:

(k+1)×k!>2×k!(k+1) \times k! > 2 \times k!

Now apply the inductive hypothesis k!>2kk! > 2^k:

2×k!>2×2k=2k+12 \times k! > 2 \times 2^k = 2^{k+1}

Combining these two inequalities:

(k+1)!=(k+1)×k!>2×k!>2×2k=2k+1(k+1)! = (k+1) \times k! > 2 \times k! > 2 \times 2^k = 2^{k+1}

Therefore: (k+1)!>2k+1(k+1)! > 2^{k+1}

By the principle of mathematical induction:

  • The statement is true for n=4n = 4 (base case).
  • If it is true for n=kn = k, it is also true for n=k+1n = k+1 (inductive step).

Therefore, n!>2nn! > 2^n for all integers n4n \geq 4. \blacksquare


Why This Works

The power of induction is the “domino effect.” Once you establish:

  1. The first domino falls (base case)
  2. Each domino knocking over the next (inductive step)

…you know ALL dominoes fall — without checking each one individually.

The key move in this proof: (k+1)!=(k+1)k!(k+1)! = (k+1) \cdot k!. We use BOTH facts simultaneously:

  • k+1>2k+1 > 2 (because k4k \geq 4)
  • k!>2kk! > 2^k (the inductive hypothesis)

Multiplying two inequalities: if a>ba > b and c>dc > d (all positive), then ac>bdac > bd.

So (k+1)k!>22k=2k+1(k+1) \cdot k! > 2 \cdot 2^k = 2^{k+1}.


Alternative Method — Verify the inequality intuitively

To understand WHY n!n! grows faster than 2n2^n:

n!=1×2×3××nn! = 1 \times 2 \times 3 \times \cdots \times n — factors increase as nn grows

2n=2×2×2××22^n = 2 \times 2 \times 2 \times \cdots \times 2 — factors are always 2

For n4n \geq 4: at position kk (for k3k \geq 3), the factor in n!n! is k3>2k \geq 3 > 2 — larger than the corresponding factor in 2n2^n.

For n=4n = 4: 4!=1×2×3×4=244! = 1 \times 2 \times 3 \times 4 = 24 vs 24=2×2×2×2=162^4 = 2 \times 2 \times 2 \times 2 = 16. The first two factors are the same (1, 2). Then 3>23 > 2 and 4>24 > 2 in factorial — so factorial wins.

CBSE Class 11 induction proofs follow a strict format. Always write: (1) “Let P(n)P(n) be…”, (2) “Verify P(4)P(4)”, (3) “Assume P(k)P(k) is true: k!>2kk! > 2^k”, (4) “To prove: (k+1)!>2k+1(k+1)! > 2^{k+1}”, (5) “Proof:”, (6) “Hence by PMI, P(n)P(n) is true for all n4n \geq 4.” This structure earns full marks even if the middle step has minor errors.


Common Mistake

Students often forget to state WHY (k+1)>2(k+1) > 2 in the inductive step. The fact that k+15>2k+1 \geq 5 > 2 (since k4k \geq 4) is not trivial — it’s what allows us to write (k+1)k!>2k!(k+1) \cdot k! > 2 \cdot k!. Without this justification, the proof is incomplete. Always state: “Since k4k \geq 4, k+15>2k+1 \geq 5 > 2.”

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next