Prove using mathematical induction for n >= 5: 2^n > n^2.
GATE 1995 · Discrete Mathematics · Mathematical Induction · medium
Answer: By mathematical induction, 2^n > n^2 holds for all integers n >= 5.
Base case: verify P(5): For n = 5: 2^5 = 32 and 5^2 = 25. Since 32 > 25, P(5) holds.
Inductive step: assume P(k), prove P(k+1): Assume 2^k > k^2 for some k >= 5. Then 2^(k+1) = 2 * 2^k > 2k^2. We need 2k^2 >= (k+1)^2 = k^2 + 2k + 1, i.e. k^2 >= 2k + 1, i.e. (k-1)^2 >= 2, which holds for all k >= 3 (and certainly for k >= 5). Therefore 2^(k+1) > (k+1)^2, completing the induction.