[Math] Proof by induction that $2^n+1 \leq 3^n$ for all positive integers $n$

inductioninequality

I am having trouble proving the following inequality:

For all positive integers $n$, $2^n+1 \leq 3^n$

The examples we have worked with in class so far have all involved the same integer on both sides of the equation, such as:

For all positive integers $n$, $2^n \leq 2^{n+1}-2^{n-1}-1$

The $3$ in the equation I am trying to prove is throwing me off. Also, I am not sure how to deal with the $+1$ on the left hand side of the inequality.

Best Answer

You assume that $2^k+1\le 3^k$. Then you want to prove that under this assumption, we will have that $2^{k+1}+1\le3^{k+1}$.

$$\begin{align}2^{k+1}+1&=(2\times2^k)+1\\ &=2(2^k+1)-1\\ &=(2^k+1)+(2^k+1)-1\\ &\le 3^k+3^k-1\\ &=3^{k+1}-1-3^k\\ &\le 3^{k+1}\end{align}$$

Related Question