Prove by mathematical induction that $\frac{n^3}{n!} < \frac{1}{2^n}$ for some $n\geq m$ where $m > 0$
To start off, I assume the hypothesis that it is true for $n$.
Trying to prove for $n+1$,
$$\frac{1}{2^{n+1}} - \frac{(n+1)^3}{(n+1)!} > 0.$$
Therefore,
$$\frac{1}{2^{n+1}} - \frac{(n+1)^3}{(n+1)!} = \frac{1}{2^n} \times \frac{1}{2} - \frac{(n+1)^3}{(n+1)!} > \frac{1}{2} \times \frac{n^3}{n!} - \frac{(n+1)^3}{(n+1)!} = \frac{1}{2n!} [ n^3 - 2n^2 - 4n - 2]$$
So basically, my task now is to prove that the last term is greater than $0$. Am i on the right track and how do I go further?