Show that $n^2<n!$ for all $n\geq 4$
What I did was
Base case:
$4^2<4!\iff16<24$
Inductive hypothesis:
Being that for a $n\leq k$, the equation remains true, we prove for $k+1$
$$\begin{align*}k^2+(k+1)^2&<(k+1)!\\ \iff k^2+(k+1)^2&<(k+1)*k!\end{align*}$$
as $k!>k^2$, summing $(k+1)^2$ will be also less than multiplying by $k+1$.
However, I don't know if this is correct or complete at all. Am I missing anything?
You assume $k^2 <k!$ and want to show result is true for $n=k+1.$ That is you want to show $(k+1)^2<(k+1)!.$
Consider $$\begin{align*}(k+1)!&=(k+1)k!\\ &>(k+1)k^2\qquad \text{(induction hypothesis)}\\ &>(k+1)(k+1)\qquad \text{(since } k^2>k+1)\\ &=(k+1)^2.\end{align*}$$