Proving Inequality Involving Powers of $2$ and $3$ Using Induction

40 Views Asked by At

I am supposed to prove the following:

$$2^n+1\leq3^n\;\;(n\in\Bbb N)$$

Base case: $n=1$.

$$2^1+1\leq3^1$$

$$3\leq3$$

Now for induction:

$$2^{n+1}+1\leq 3^{n+1}$$

$$2\cdot2^n+1\leq3\cdot3^n$$

$$2^n+\frac{1}{2}\quad\leq\quad \frac{3}{2}\cdot3^n$$

$$2^n+\frac{1}{2}\quad\leq\quad2^n+1\quad\leq\quad3^n\quad\leq\quad\frac{3}{2}\cdot3^n$$

Is this a valid approach? The last step I took was a bit strange and I want to know if it was okay.

2

There are 2 best solutions below

0
On BEST ANSWER

Your almost correct. But let me reconstruct the proof.

We have to assume that $$2^n+1\leq 3^n.$$ Then multiplying by $2$, we get $$\big[2^{n+1}+2\big]\leq \big[2\cdot 3^n\big].$$ Thus, $$\begin{align} 2^{n+1}+1\quad&<\quad 2^{n+1}+2\\ &\leq\quad 2\cdot 3^n\\ &<\quad 3\cdot 3^n\\ &=\quad 3^{n+1}. \end{align} $$

2
On

Working backwards from what you're trying to prove with equalities can work but only if each line is an iff statement from the previous one. In this case it is not and therefore is not a valid proof.

Consider $3^{n+1} - (2^{n+1} + 1)$

$\Rightarrow 3*3^{n} - 2*2^{n} - 1$

$\Rightarrow 2(3^{n} - 2^{n} -1) + 3^{n}$

From our assumption that $3^{n} \geqslant 2^{n} + 1$ it is simple to see that:

$2(3^{n} - 2^{n} -1) + 3^{n} \geqslant 0$

$\Rightarrow 3^{n+1} \geqslant 2^{n+1} + 1$ as required.