5

Prove $2^n >2n$ for all integral values of n greater than 2.

Let $p_n$ be the statement: $$2^n>2n\ \forall\ n\gt2$$

If the inequality is valid for $n=k$ where $k>2$: $$p_k: 2^k>2k$$

Then for $n=k+1$: $$p_{k+1} = 2^{k+1}>2(k+1)$$

I don't know how to do the inductive step itself, I have only done series/recurrence relations inductions. Have I used the correct layout/notation? Is there more cool notation I could add to improve the mathematical-ness of the proof?

Thanks

amWhy
  • 209,954
salman
  • 1,690

2 Answers2

8

Don't forget the "base case": $p(3)$. It may seem obviously true, but formally, an inductive proof requires it.

With respect to the inductive step, note that $$2^{k+1} = \underbrace{2 \cdot 2^k \gt 2\cdot 2k}_{\text{inductive step}} = 4k = \underbrace{\color{blue}{\bf 2k+2k\geq 2k+2}}_{\text{for all }\; k \geq 1}=2(k+1)$$

amWhy
  • 209,954
1

When you will use mathematical induction, try keep on your mind that you have to follow 3 steps:

  1. Verify that your statement is true for a first case, commonly for 1.

  2. Suppose that your statement is true for a particular $k$ $\in \mathbb{N}$

  3. Then try to prove that you statement is true for $k+1$.

In you problem:

  1. The first number that you statement works is $3$, because $2^3 > 2\cdot3 $

  2. Supose that there exists a $k \in \mathbb{N}$ such that $2^k > 2\cdot k $

  3. Now we will show that $2^{k+1} > 2\cdot(k+1) $:
    Note that $2^{k+1} = 2^k\cdot 2 > 2k\cdot2 = 4k = 2k+2k > 2k+2 = 2(k+1)$.

Hence, $2^k > 2\cdot k $ for all $k \in \mathbb{N}$ with $k \geq 3$.

Git Gud
  • 31,356
User43029
  • 1,245