I am working through a discrete math course, and have come upon a question that I don't understand how the solution was obtained.
The question is, prove $n! \geq n^2$
Hypothesis: $p(n): n! \geq n^2, n\geq 4$
Basic step: $p(4): (4)! \geq (4)^2$. $24 \geq 16$, so $p(4)$ is true.
Prove $p(n+1): (n+1)! \geq (n+1)^2$
(left side)
$n!(n+1)$ (because $n!(n+1)$ is the same as $(n+1)!$)
$n^2(n+1)$ (by inductive hypothesis)
$n^3+n^2 $
... and here is where I get stuck. The solutions key continues as follows: $n^3+n^2 \geq n^3 + 3n^2$ (I don't understand where the $3n^2$ comes from) $= n^3 + 2n^2 + n \geq n^2 + 2n + 1 = (n + 1)^2$
I understand how $n^2 + 2n + 1 = (n + 1)^2$, I even get how $n^3 + 2n^2 + n \geq n^2 + 2n + 1$ by factoring out $n$... but I don't understand where $n$ goes. Shouldn't it read $n^3 + 2n^2 + n \geq n(n^2 + 2n + 1)$ ?
Thanks for any help offered,