Proof Techniques Math Example 4

Follow the full solution, then compare it with the other examples linked below.

Example 4

medium
Prove using mathematical induction: 3n>2n+13^n > 2n+1 for all nβ‰₯2n \ge 2.

Solution

  1. 1
    Base case n=2n=2: 32=9>5=2(2)+13^2 = 9 > 5 = 2(2)+1. True.
  2. 2
    Inductive hypothesis: assume 3k>2k+13^k > 2k+1 for some kβ‰₯2k \ge 2.
  3. 3
    Inductive step: 3k+1=3β‹…3k>3(2k+1)=6k+33^{k+1} = 3 \cdot 3^k > 3(2k+1) = 6k+3. Need to show 6k+3>2(k+1)+1=2k+36k+3 > 2(k+1)+1 = 2k+3.
  4. 4
    Indeed 6k+3>2k+3⇔4k>06k+3 > 2k+3 \Leftrightarrow 4k > 0, which holds for kβ‰₯2k \ge 2. Therefore 3k+1>2(k+1)+13^{k+1} > 2(k+1)+1. β–‘\square

Answer

3n>2n+1Β forΒ allΒ nβ‰₯2β–‘3^n > 2n+1 \text{ for all } n \ge 2 \quad \square
Induction is natural here because the statement is indexed by nn and involves a recursive structure (3k+1=3β‹…3k3^{k+1} = 3 \cdot 3^k). The key step is chaining the hypothesis through the factor of 3.

About Proof Techniques

Proof techniques are standard strategies for establishing mathematical claims under different structures.

Learn more about Proof Techniques β†’

More Proof Techniques Examples