So I'm reviewing some problems but I can't seem to understand the part below, doesn't really have to do with induction but just so you guys understand whats going on.
Use mathematical induction to prove the following statement is true for integers $n > 1:$
$n! < n^n$
Solution
Base Case: $n = 2$
LHS: $2! = 2$
RHS: $2^2 = 4$
Because the LHS is less than the RHS the base case is shown to be true.
Inductive Hypothesis: Assume for an arbitrary positive integer $n = k$ s.t $k! < k^k$
Inductive Step: Prove for $n = k+1$ that $(k+1)! < (k+1)^{k+1}$
(starting with the IH)
$k! < k^k$
$(k+1)k! < (k+1)k^k$
$(k+1)! < (k+1)k^k$ <--
$(k+1)! < (k+1)(k+1)^k$ <--
$(k+1)! < (k+1)^{k+1}$
(starting with k+1)
(k+1)! = (k+1)k!
$(k+1)! < (k+1)k^k$ by the IH
$(k+1)! < (k+1)(k+1)^k$
$(k+1)! < (k+1)^{k+1}$
Now what I'm lost on is how did he go from $(k+1)k^k$ to $(k+1)(k+1)^k$ ?