Prove 2^n > n for all positive integers

easy CBSE JEE-MAIN 3 min read

Question

Prove by the Principle of Mathematical Induction that 2n>n2^n > n for all positive integers nn.

Solution — Step by Step

Let P(n)P(n): 2n>n2^n > n, for all positive integers n1n \geq 1.

Base case (n=1n = 1): 21=2>12^1 = 2 > 1. ✓

P(1)P(1) is true.

Inductive hypothesis: Assume P(k)P(k) is true for some arbitrary positive integer k1k \geq 1.

That is, assume: 2k>k2^k > k … (1)

We need to prove that P(k+1)P(k+1) is also true, i.e., that 2k+1>k+12^{k+1} > k+1.

Starting from the left side of what we want to prove:

2k+1=22k2^{k+1} = 2 \cdot 2^k

From the inductive hypothesis (1): 2k>k2^k > k, so 22k>2k2 \cdot 2^k > 2k.

Therefore:

2k+1>2k2^{k+1} > 2k

Now, for positive integers k1k \geq 1: is 2kk+12k \geq k+1?

2kk+1    k12k \geq k+1 \iff k \geq 1 ✓ (this is true by our assumption)

Therefore: 2k+1>2kk+12^{k+1} > 2k \geq k+1

2k+1>k+1\boxed{2^{k+1} > k+1}

P(k+1)P(k+1) is true.

We have shown:

  1. P(1)P(1) is true (base case)
  2. If P(k)P(k) is true, then P(k+1)P(k+1) is true (inductive step)

By the Principle of Mathematical Induction, P(n)P(n) is true for all positive integers nn.

Hence, 2n>n2^n > n for all nNn \in \mathbb{N}. \blacksquare

Why This Works

Mathematical induction works like an infinite chain of dominoes. We show the first domino falls (base case). We show each domino knocks over the next (inductive step). Therefore, all dominoes fall.

The key insight here is that 2k+1=2×2k2^{k+1} = 2 \times 2^k. By multiplying the LHS by 2, we get something much larger than k+1k+1 — in fact, larger than 2k2k, and 2kk+12k \geq k+1 for all k1k \geq 1. This is the “engine” that drives the inequality forward.

The inequality 2kk+12k \geq k+1 is equivalent to k1k \geq 1, which is always satisfied in our induction (since kk is a positive integer). This is why we need k1k \geq 1 specified in the hypothesis.

Alternative Method — Direct Verification

While induction is the required method, you can verify for small values to build intuition:

nn2n2^nnn2n>n2^n > n?
121Yes
242Yes
383Yes
10102410Yes
201,048,57620Yes

Exponential growth (2n2^n) vs linear growth (nn) — the exponential always wins, and the gap gets larger.

Common Mistake

Skipping the step that justifies 2kk+12k \geq k+1. Students write "2k+1=22k>2k>k+12^{k+1} = 2 \cdot 2^k > 2k > k+1" without showing WHY 2k>k+12k > k+1. This step needs justification: 2kk1=k102k - k - 1 = k - 1 \geq 0 for k1k \geq 1. Without this, the proof has a gap and loses marks in boards.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next