0

If $3^n>n$ then $3^{n+1}>n+1$

I could not solve this problem

Imago
  • 2,132
bappy
  • 91
  • What have you tried so far? Is at least the result intuitively clear to you? Do you know proving statements by induction? – Imago Jan 26 '17 at 16:09
  • @Imago I know that first we must show P(1) is true, 2nd step we must assume P(k). Then final step we must show it is true for P(k+1). Then only it will be proved. But i could not understand this question can you explain me. – bappy Jan 27 '17 at 02:12

2 Answers2

2

If $n=0$, then the truth of this statement is easily verifiable, since

$$3^0 = 1 > 0.$$

If $n>0$, i.e. $n\ge1$, then:

$$3^{n+1} = (by \: basic \: arithmetic)$$

$$3\cdot3^n > (by \: assumption \: 3^n > n)$$

$$3n = (by \: basic \: arithmetic)$$

$$2n + n \ge (by \: n \ge 1)$$

$$2n + 1 > (by \: n \ge 1)$$

$$n + 1$$

Bram28
  • 100,612
  • 6
  • 70
  • 118
0

Presumably, $n\in\Bbb N$ since we're talking about an induction proof (you could also include $n=0$ but I won't here). Thus, $$n\geq 1\implies n+n\geq n+1\implies n+n+n>n+1\implies 3n>n+1$$ You also have $3^n>n$ by assumption. I'll leave the rest to you.

Dave
  • 13,568