Show that $n!<n^n $ where $n>1$ and is a Positive Integer

76 Views Asked by At

Basis Case:

$2! = 2\times1 = 2$

$2^2 = 4>2$

Inductive Hypothesis:

$k!<k^k$

Induction Step:

$k!<k^k$

$k!(k+1) < k^k(k+1)$

$(k+1)! < k^{k+1} + k^k$

I'm confused on where to go from here, or if what I was doing was even the right way to go. I need advice on using induction for this question and on inequalities in general.

3

There are 3 best solutions below

2
On BEST ANSWER

$$ \frac{n!}{n^n} = \frac{1 \cdot 2\cdots n}{n \cdot n \cdots n} = \frac{1}{n} \cdot \frac{2}{n} \cdots \frac{n}{n} < 1 $$ since all factors $< 1$.

Induction step:

$(n+1)! = n! (n+1) <n^n(n+1) < (n+1)^n(n+1) = (n+1)^{n+1}$

0
On

$(k+1)! = k!(k+1) < k^k(k+1) <(k+1)^k(k+1) = (k+1)^{k+1}$

0
On

Easy proof by induction:

$k=2$ is true since $2<2^2=4$. Suppose the result is true for $n-1$ i.e $(n-1)!<(n-1)^{(n-1)}$. Then multiplying both sides by $n$ gives:

$n!=n(n-1)!<n(n-1)^{(n-1)}<n^{n}$