Prove the inequality $$\sqrt[n]{n!}\lt \sqrt[n+1]{(n+1)!}$$
5 Answers
This is only an explanation rather than a rigorous proof, but it might be more convincing than a rigorous proof (and can be converted to one, if desired).
Note that
$$(n!)^{1/n}\lt((n+1)!)^{1/(n+1)}\ \iff{\ln1+\ln2+\cdots+\ln n\over n}\lt{\ln1+\ln2+\cdots+\ln n+\ln(n+1)\over n+1}$$
Each expression in the equivalent inequality can be interpreted as an average. The second can be seen as an updated average, with one additional value, $\ln(n+1)$, that is larger than all the other values. It's thus clear that this average exceeds the first. (E.g., if your grades go up from year to year, your grade point average should not go down.)
- 79,832
As $n!$ is only defined if $n\in \mathbb{N}\cup \{ 0\}$, use logarithms. You can make:
$$\frac{1}{n} \log(n!)< \frac{1}{n+1}\log((n+1)!)$$
$$\Leftrightarrow (n+1)\log(n!)< n\log((n+1)!)$$
$$\Leftrightarrow (n+1)\log(n!)< n\log(n!)+ n\log(n+1)$$
$$\Leftrightarrow n\log(n!)+\log(n!)< n\log(n!)+ n\log(n+1)$$ $$\log(n!)< n\log(n+1)$$
$$\Leftrightarrow \log(n!)<log((n+1)^n)$$
And that is true because $n!<(n+1)^n$ noting that you have $n$ times $n+1$, which is greater than the product of the numbers from 1 to $n$.
- 5,438
$$\sqrt[n]{n!}\lt \sqrt[n+1]{(n+1)!}$$ Raise this to the $nm$-th power: $$(n!)^{n+1} \lt ((n+1)!)^n$$ $$(n!)^nn!<(n!(n+1))^n$$ $$(n!)^nn!<(n!)^n(n+1)^n$$ $$n! \le (n+1)^n$$ Each of the $n$ factors of $n!$ is smaller than $n+1$.
- 12,271
- 11,049
-
I see now this is similar to the corrected proof of @MonsieurGalois but without logarithm – miracle173 Aug 15 '16 at 02:58
-
Sorry, I was not at the computer, so I didn't corrected properly. – iam_agf Aug 15 '16 at 03:01
Start with the pretty easy fact that the average of the logarithms of the first $n$ integers is less than the logarithm of $n+1$: $$ \frac1n\sum_{k=1}^n\log(k)\lt\log(n+1)\tag{1} $$ Divide by $n+1$ $$ \frac1{n(n+1)}\sum_{k=1}^n\log(k)\lt\frac1{n+1}\log(n+1)\tag{2} $$ Add $\frac1{n+1}\sum\limits_{k=1}^n\log(k)$ to both sides $$ \frac1n\sum_{k=1}^n\log(k)\lt\frac1{n+1}\sum_{k=1}^{n+1}\log(k)\tag{3} $$ And $(3)$ is the logarithm of the desired inequality.
- 345,667
-
This is very nice! $(1)$ seems kind of weak, it's pretty surprising that you get the final result from it – Yuriy S Aug 15 '16 at 08:52
-
@YuriyS: $(1)$ is pretty weak. However, I worked this backwards from the way it was presented, and $(1)$ was the final result. – robjohn Aug 15 '16 at 15:47
Since $n > 0$, proving that $$\sqrt[n]{n!}\lt \sqrt[n+1]{(n+1)!}$$ is the same as proving that $$\log\left(\sqrt[n]{n!}\right)\lt \log\left(\sqrt[n+1]{(n+1)!} \right)\tag 1$$that is to say that $$\frac 1n\log\left( n!\right)\lt \frac 1{n+1}\log\left( (n+1)!\right)$$ Using Stirling approximation $$m! \sim \sqrt{2 \pi m}\left(\frac{m}{e}\right)^m$$ which translates to $$\log(m!)=\log\sqrt{2 \pi}+\frac 12 \log(m)+m \log(m)-m$$ the left hand side of $(1)$ becomes $$(\log (n)-1)+\frac{\log (2 \pi )+\log (n)}{2 n}$$ while the right hand side of $(1)$ becomes $$(\log (n+1)-1)+\frac{\log (2 \pi )+\log (n+1)}{2 (n+1)}$$ Now, writing $n+1=n\left(1+\frac 1n\right)$ and using truncated Taylor series or equivalents, we should arrive to $$ \log\left(\sqrt[n+1]{(n+1)!}\right)-\log\left(\sqrt[n]{n!}\right) \sim \frac 1n >0$$
If you add one more terms from Stirling series, you should get $$\log\left(\sqrt[n+1]{(n+1)!}\right)-\log\left(\sqrt[n]{n!}\right)=\frac 1n-\frac{\log(2\pi n)}{2n^2}+O\left(\frac{1}{n^{5/2}}\right)$$ where the rhs is always positive.
Edit
Ad Did commented, the above assumes that $n$ is sufficiently large enough in order that Stirling approximation be very good.
- 53,687
- 260,315
-
2Sorry but this approach needs much more caution, to produce anything meaningful. 1. Stirling formula is not an identity but an expansion with an error term hence one should follow some $o$ term starting at "which translates to". 2. If this succeeds, the most it can produce is that the inequality holds for n large enough, not for every n as asked. – Did Aug 15 '16 at 07:16