6

I'd be really grateful if someone could help me figure out how you prove $n!\leq (n/2) ^n$ ?

Dennis Gulko
  • 15,640

2 Answers2

6

$$\sqrt[n]{n!}=\sqrt[n]{1\cdot 2\cdot 3\cdots n}\le \frac{1+2+3+\cdots+n}{n}$$ (using the arithmetic-geometric mean inequality)

Now $1+2+3+\cdots+n=\frac{n(n+1)}{2}$ (why), so the RHS becomes $\frac{n+1}{2}$. Raise each side to the power $n$ and you get $n!\le (\frac{n+1}{2})^n$, as @Hagen suggests.

vadim123
  • 82,796
1

If you want a more accurate estimation, you can approximate $\log n!$ by an integral: $$ \log n! = \log 1 + \dots + \log n \leq \int_{1}^{n+1} \log x \ dx = [x \log x - x ]_{1}^{n+1} \\ = (n+1) \left(\log(\frac{n+1}{e})\right) - 1.$$ It follows that: $$ n! \leq \frac{1}{e} \left(\frac{n+1}{e}\right)^{n+1}.$$ Because $e > 2$, this implies that $n! < (n/2)^n$, if $n$ is reasonably large.