Prove that: $n!>2^n$ for $n \ge 4$.
So in my class we are learning about induction, and the difference between "weak" induction and "strong" induction (however I don't really understand how strong induction is different/how it works.
Here's my attempt:
Let S(n) be the statement $n!>2^n$ for $n \ge 4$. Then let n=4
$$4!>2^4$$ $$24>16$$
so S(1) is true. Next, suppose that k is any integer with $k \ge 4$ such that S(k) is the statement $k!>2^k$. Then, multiplying (k+1) to both sides:
$$k!>2^k$$ $$k!(k+1)>2^k(k+1)$$ $$(k+1)!>k2^k+2^k$$
And this is where I am stuck.... S(k+1) is the statement $(k+1)!>2^(k+1)=2*2^k$ so then $k!(k+1)>2^k(k+1)>2*2^k$ because $k \ge 4$? Is this the right thinking, and if so, I am still not really sure how to formally write this out.