Prove that $2^{n} < n!$ $\forall$ n > 4
$n=5:$ $$2^{5}<5!$$
$$32 < 120$$
This is true.
Now, after knowing it worked for $n$ we need to show it works for every other, so $n+1$:
$$2^{n+1} < (n+1)!$$
$$2^{n} < \frac{(n+1)!}{2}$$
We know from beginning that $2^{n} < n!$
So we replace it with it here and then show:
$$n! < \frac{(n+1)!}{2}$$
$$n! < \frac{n!\cdot(n+1)}{2}$$
$$1<\frac{n+1}{2}$$
Task say for all $n > 4$ so the thing on the right side will really be greater than $1$.
I hope everything is ok?
Edit: The possible-duplicate-link didn't help me because I'm not really looking for a solution to the task. I'm rather interested in knowing if MY proof is correct.