-1

I understand base case at $n=1$, and $n=2$. Then I do understand the inductive hypothesis of assuming $n=k$. The part that confuses me is when showing $n=k+1$. On other tutorials that are online, they multiply by 3 to both sides instead of plugging in $k+1$ for n and proving from there. I started the proof for $n=k+1$ like this:

Proving the statement holds for $n=k+1$:

$ 3^{k} > k^{2}$ = $ 3^{k+1} > (k+1)^{2}$

=> $ 3^{k}*3 > k^{2}+2k+1$ I am confused right here.

Or compare the left side of the inequality with the right side $ 3^{k}*3 > k^{2}$

Where $3^{k}*3 > k^{2}$, $ 3^{k} $ is less than $ k^{2}$ by inductive hypothesis Then I am not sure where to go from there.

sai-kartik
  • 2,090
  • You have $3^{k+1}=3\cdot 3^k>3k^2$. The rest should be easy. – Peter May 13 '20 at 20:00
  • 1
    Use equals signs only for equality. You write $3^k>k^2\color{red}{=}3^{k+1}>(k+1)^2$. You mean to write "We wish to prove that $3^k>k^2$ implies that $3^{k+1}>(k+1)^2$" – JMoravitz May 13 '20 at 20:01
  • 1
  • Read the linked question on how to write a proper proof by induction. You should be trying to line everything up in one line if possible, or if not then at least in one line of implications. You should be able in this problem be able to write $3^{k+1}\geq \dots \geq \dots \geq \dots \geq (k+1)^2$ where the inbetween steps follow from simple algebraic manipulations, the fact that $k$ is at least as large as your base case, and the induction hypothesis. – JMoravitz May 13 '20 at 20:03
  • Jmoravitz sir is $>$ not $\geq $ – Theoneandonly May 13 '20 at 20:07
  • @Theoneandonly then modify my line to say $\geq \dots \geq \dots \geq \dots >\dots \geq \dots (k+1)^2$. All that is required is a single strict inequality in the chain and the rest be non-strict. The point is that some of those in the chain can be strict equalities if one chooses. That will fall naturally from using the induction hypothesis anyways for this problem – JMoravitz May 13 '20 at 20:10

2 Answers2

0

$$ 3^{n+1} = 3^n \cdot 3 > 3 n^2 = n^2 + n^2 + n^2 > n^2 + 2n + 1 = (n+1)^2 QED$$

0

First of all.... don't write $3^{k+1} > (k+1)^2$. That's what you have to prove.... you don't know it yet.

DO not start with what you need to prove and work backwards.

Startt with what you know and work foreward.

What you know is $3^k > k^2$.

So $3*3^k > 3*k^2$

So $3^{k+1} > 3*k^2$.

Now what you need to prove is (scribble this on note paper to the side) $3k^2 \ge (k+1)^2= k^2 + 2k + 1$.

So $3^{k+1} > k^2 + k^2 + k^2$

Now what we need to prove (still scribbling on note paper to the side) is that $k^2 + k^2 \ge 2k + 1$.

We know that $k \ge 2$ so $k*k \ge 2*k$ so

So $3^{k+1} > k^2 + k^2 + k^2 \ge k^2 + 2k + k^2$.

Now we need to prove (scribble scribble) that $k^2 \ge 1$.

We know that $k \ge 1$ so $k*k \ge 1*k = k \ge 2 > 1$ so

So $3^{k+1} > 3k^2= k^2+k^2 + k^2 \ge k^2 + 2k + k^2 > k^2 + 2k + 1 =(k+1)^2$.

....

Now we are done.

fleablood
  • 124,253