I am having trouble simplifying an induction question. The question is:
Let $P(n)$ be the statement that $n! < n^n$ where $n$ is an integer greater than $1$.
My work so far:
Base case $n = 2$
$2! = 2$
$2^2 = 4$
$2 < 4$. Therefore the base case is true
Inductive Hypothesis
$P(k) = k! < k^k$ for some $k > 1$
Inductive step
$P(k+1) = (k+1)! < (k+1)^{k+1}$
$k!(k+1) < k^k(k+1)$
(so from my understanding and based on previous questions, I want to take $k^k(k+1)$ into $(k+1)^{k+1}$ as next inductive step.
$k^k(k+1) = k^k+1 + k^k$ using distribution.
I'm not sure where to go from here.
Thanks!