1

How find which $\alpha>0$ satisfies $e^x>x^\alpha$ $\forall x>0$?

I know that $$e^x=\left(e^\frac{x}{\alpha}\right)^\alpha\geq \left(1+\frac{x}{\alpha}\right)^\alpha\geq \frac{x^ \alpha}{\alpha^\alpha}.$$ The RHS is surely greater or equal to $x^\alpha$ if $\alpha<1$. But how can I study the remaining cases?

axi
  • 357

3 Answers3

2

We have that

$$f(x)=e^x-x^e=e^x-e^{e\log x}>0 \iff g(x)=x-e\log x>0 $$

and $g(x)\ge 0$ with $g(x)=0 \iff x=e$ therefore, since for $\alpha=e$ we have exactly one root, the solution is $\alpha<e$.

user
  • 162,563
2

$x^\alpha=e^{\alpha\log x}$. And the function $e^x$ is monotonic increasing. So $e^x>x^\alpha\iff x>\alpha\log x$.

We want to find all $\alpha>0$ for which $x>\alpha\log x$ whenever $x>0$. So define $f_\alpha(x)=x-\alpha\log x$. This function tends to $+\infty$ as $x\downarrow 0$ or $x\to+\infty$. So we want to find its minimum, which occurs when $f'_\alpha(x)=1-\alpha/x=0$, i.e. when $x=\alpha$. And at this minimum, we have $$f_\alpha(x)=f_\alpha(\alpha)=\alpha(1-\log\alpha)$$ You can take it from there.

TonyK
  • 68,059
  • Ok so when I have $f_\alpha<f$ then how can I conclude that the inequality is satified $\forall \alpha<e$? – axi Feb 06 '24 at 17:18
  • I mean how can I arrive to take from $x=\alpha$, then $\alpha=e$!? – axi Feb 06 '24 at 17:42
0

Given is $e^x>x^\alpha,\forall x\ge0$, taking logarithm on both sides, we get $x>\alpha \log{x}$. Now if $0<x<1$, $\log{x}<0$, so if we divide by $\log{x}$ the inequality gets reversed: $\frac{x}{\log{x}} < \alpha$.

Thus, the value of $\alpha$ must be greater than the maximum value of $\frac{x}{\log{x}}$ in $(0,1)$, which is at $x=0$ and the maximum value in $(0,1)$ is $0$, as we can see from this graph. Thus $\alpha > 0$.

Now for the case when $x>0$, $\log{x}>0$, thus $\frac{x}{{\log}{x}}>\alpha$. In this case, $\alpha$ must be smaller than the minimum value of $\frac{x}{\log{x}}$ in $(1,\infty)$, which is at $x=e$ and the value of the minimum is $e$. Thus, $\alpha<e$.

Overall, we get that $0<\alpha<e$, such that $e^x>x^\alpha,\forall x>0$.

AMC3F9
  • 431