0

I'm trying to proof that expression $(4^n>n^3)$ for $n\in \mathbb{N}$ using the induction.

1.There is $n0 = 0 $ for what $L=4^0=1$ and $P=n^0=0$

That is why $L>P$


2.Let's see what happen for $n+1$

Assumption: $4^n > n^3$ Thesis: $4*4^n > (n+1)^3$

I was always doing it like that $L = 4*4^n$ due to the assumption is greater than $4 * n^3$

And I do not know how can I solve it.

DeepSea
  • 77,651
FieryCod
  • 157

2 Answers2

1

The bases case $n = 1, 2$ are clear since $4^1 = 4 > 1 = 1^3, 4^2 = 16 > 8 = 2^3$. Assume the statement is true when $n = k\geq 3$, you prove its true for $n = k+1$. This means to prove: $4^{k+1} > (k+1)^3$. We have: $4^{k+1} = 4\cdot 4^k > 4\cdot k^3 = k^3 + k^3+k^3+k^3 \geq k^3+3k^2 + 3k+ 1 = (k+1)^3$. Thus its true for all $n \geq 1$.

DeepSea
  • 77,651
1

You want to show that if $4^n > n^3$ then $4 * 4^n > (n + 1)^3$.

If n ≥ 2 then $(1 + 1/n)^3 ≤ 1.5^3 = 3.375 < 4$. This shows that $(n + 1)^3 ≤ 3.375 n^3$ for n ≥ 2.

If n ≥ 2 then $4^{n+1} = 4 * 4^n > 4 * n^3 ≥ 3.375 n^3 ≥ (n+1)^3$.

Since $4^n > n^3$ is true for n = 1 and n = 2, it is true for all n.

gnasher729
  • 10,113
  • It is really a good proof? I thought that proof is when we operate on n not on real numbers. – FieryCod Mar 27 '16 at 22:40
  • This is not a valid proof. It has to be shown for the (n+1)th case, not just numbers 1 and 2 (as the pattern could terminate at 3, or 4 etc.) – Inazuma Mar 27 '16 at 22:43
  • This proof is valid. It uses $n \ge 2$ to show that $n^3$ grows by less than a factor of 4. – marty cohen Mar 28 '16 at 00:11