Prove by induction $2^n \geq n^3 \ \ \forall n\geq 10 $
I did these steps:
- Basis step
$$P(10): \ \ 1024 \geq 1000 \ (True)$$ - Inductive step $$P(n) \implies P(n+1) \\P(n+1) = 2^{n+1} \geq (n+1)^3$$ so $$2^n \geq n^3 \\ 2^n \cdot 2 \geq n^3 \cdot 2 \\ 2^{n+1} \geq 2n^3 \\ 2^{n+1} \geq (n+1)^3$$ taking advantage of the fact that $(n+1)^3 \geq 2n^3$ and less than $2^{n+1}$.
does this demonstration work?
I know there's a similar question but the solution is different, I want to know if my demonstration is valid as well.