I aim to show that $$(n+1)^n<n^{(n+1)}$$ for all $n \geq 3$. I tried induction, but it didn't work. What should I do?
-
Related: http://math.stackexchange.com/questions/517555/fastest-way-to-check-if-xy-yx – Henry Jun 13 '16 at 11:28
7 Answers
Assume for contradiction that at some point we have $$ (n-1)^n>n^{n-1},\text{ but } (n+1)^n\geq n^{n+1} $$ and multiply the two inequalities.

- 199,419
-
I couldn't get the trick. We obtain $(n^2-1)^n > n^{2n}$. Why in development of $ (n^2-1)^n$ the parcel $\sum_{k=1}^n(^n_k)(-1)^k(x^2)^{n-k}$ have to be negative? – Filburt Jan 14 '16 at 17:32
-
You're thinking along too complicated lines. The inequality we get is $(n^2-1)^n>(n^2)^n$. If you still can't see it, take $n$-th root. – Arthur Jan 14 '16 at 17:35
-
-
@FernandoVieraCostaJúnior If you want to show it your way with the binomial coefficients, it is also not very difficult to show that in the alternating sum $\sum_{k=1}^n \binom nk (-1)^{k}(n^2)^{n-k}$, every negative term is larger (in absolute value) than the positive term that comes after it. – Arthur Jan 15 '16 at 06:36
-
1
For the record, we can still do it by induction, it's just not as pleasant as other induction questions and the other proofs on this page.
Let's start with the LHS of the $n+1$ case. We're going to 'force in' the $n$ case, so we can use the induction hypothesis.
$$ \begin{align} (n+2)^{n+1} & = {(n+2)^{n+1}(n+1)^n \over (n+1)^n} \\ \\ & < {(n+2)^{n+1}n^{n+1} \over (n+1)^n} & \text{(induction hypothesis)} \end{align} $$
Now we work backwards from what we want to show to finish the induction step. We want:
$$\begin{align} {(n+2)^{n+1}n^{n+1} \over (n+1)^n} &< (n+1)^{n+2} \\\\ \iff (n+2)^{n+1}n^{n+1} &< (n+1)^{2n+2} \\\\ \iff [n(n+2)]^{n+1} &< [(n+1)^2]^{n+1} \\\\ \iff n(n+2) &< (n+1)^2 \end{align}$$
And this is true for all $n$ (simply expand it out). Hence we're done once we note it's true for $n=3$.
Alternatively if we know that $\lim_{n \to \infty} (1+1/n)^n = e < 3$, and that $(1+1/n)^n$ is increasing, we can observe that the inequality is true by dividing by $n^n$. But these facts require more work than a direct proof.

- 799
- 1
- 5
- 8
For $n\geq 3, n\in\mathbb{N}$ we have $\binom{n}{2}=\frac{n(n-1)}{2}<n^2$ and so $(n+1)^n=\sum_{k=0}^n \binom{n}{k}n^{n-k}=1+\sum_{k=0}^{n-1} \binom{n}{k}n^{n-k}< 1+\sum_{k=0}^{n-1} n^kn^{n-k}=1+n\cdot n^n=1+n^{n+1}$ So we only need to show $n^{n+1}\neq (n+1)^n$. This is clear because one and only one of the numbers is odd.
Hint Since $\log$ is an increasing function, taking the logarithm of both sides and rearranging gives that inequality is equivalent to $$\frac{\log n}{n} < \frac{\log (n + 1)}{n + 1}.$$ So, it suffices to show that the function $$x \mapsto \frac{\log x}{x}$$ is (strictly) decreasing on the interval $[3, \infty)$, which is a straightforward exercise using the First Derivative Test.

- 99,363
-
-
It would be useful if you included a little more context, e.g., the material in the section of the course for which this problem was assigned, so that potential answerers can give appropriate hints. – Travis Willse Jan 14 '16 at 17:45
Hint: rewrite as $n>\sqrt[n+1]{(n+1)^n}$ and try to use AM-GM inequality.
Further hint: $(n+1)^n=(n+1)^{n-1}\sqrt{n+1}^2$.
Further hint (per request): AM-GM gives us $$\sqrt[n+1]{(n+1)^n}=\sqrt{(n+1)\dots(n+1)\sqrt{n+1}\sqrt{n+1}}<\frac{(n+1)+\dots+(n+1)+\sqrt{n+1}+\sqrt{n+1}}{n+1}=\frac{(n-1)(n+1)+2\sqrt{n+1}}{n+1}$$

- 26,600
Hint: The function $x \mapsto x^{1/x}$ has a single critical point at $x=e$ and is decreasing for $x \gt e$.

- 216,483
$(n+1)^n<n^{(n+1)} \iff n\ln (n+1)<(n+1)\ln n\iff \ln (1+\frac 1n)^n<\ln n$.
The LHS tends to 1 and the RHS tends to $\infty$.
For $n=2$ one has LHS$\approx 0.8109$ and RHS$\approx 06931$ so LHS>RHS but for $n\ge 3$ the inequality is verified increasingly in each of the two sides.

- 29,594
-
Both RHS and LHS of the last inequality are increasing, so it's not immediate that if the inequality holds for $n=3$, then it will work for $n>3$. – Wojowu Jan 14 '16 at 17:41
-