I want to prove that $2^n$ does not divide $n!$.
I was trying by induction and I'm confused about if what I'm doing is right.
First I test it with $n=1$. In fact: $$2^1 \nmid 1!$$
So if i take the I.H. as $2^n \nmid n!$ and I try to prove it for $n+1$: $$2^{n+1} \nmid (n+1)!$$ $$2^{n} \cdot 2 \nmid (n+1) \cdot n!$$
As $2^n \nmid n!$ it must be that $2^n$ divides $n+1$, so I need to prove that it doesn't. If I try by induction again I must have $n>1$ for it to be true:
$$P(n) = 2^n \nmid n+1$$ $$P(n+1) = 2^n \cdot 2 \nmid n+1+1$$ but $2^n \nmid n+1$ and $2^n \nmid 1$ because $n>1$
So my question is obviously if this is correct. I'm doubting because the exception I have to do with $n$ being greater than 1 for the second part. If I made a mistake could you point to me in a better direction? I'm sure there must be a simpler way to prove this.
Thanks!