"Let P(n) be the statement that (n)! < (n)^n, where is an integer greater than 1. Prove by mathematical induction that P(n) is true for all integers n greater than 1."
I've written
Basic step
Show that P(2) is true:
2! < (2)^2
1*2 < 2*2
2 < 4 (which is true)
Thus we've proven that the first step is true.
Inductive hypothesis
Assume P(k) => ((k)! < (k)^k ) is true
Inductive step
Show that P(k+1) is true:
(k+1)! < (k+1)^(k+1)
1*2*3*...(k)(k+1) < (k+1)(k+1)(k+1)...(k+1)
1*2*3*...(k^2 + k ) < (k+1)(k+1)(k+1)...*(k+1)
I'm not sure on how to continue from here...