How to solve $(x-1)e^{-x} > 0.5$

166 Views Asked by At

As the title mentioned, how to solve $x$ from the equation:

$$(x-1)e^{-x} > 0.5$$

How can I solve this analytically? This is a part of my homework and I got stuck to this equation. I'm also given the information that:

$$-x e^{-x} \leq -0.1x$$

if it helps. The problem is to find the bounds for $x$ in Wolfe's test.

P.S. do I need to use for example Newton's method to solve this?

2

There are 2 best solutions below

4
On BEST ANSWER

Hint

Consider the function $$f(x)=(x-1)e^{-x}-\frac12$$ Its erivative simplifies to $$f'(x)=-e^{-x} (x-2)$$ which means that there is an extremum at $x=2$ and $f(2)=\frac{1}{e^2}-\frac{1}{2}\approx -0.364665$. The second derivative test shows that this is a maximum.

I am sure that you can take from here.

4
On

Your inequality can be written as

$(1-x)e^{1-x}<-0.5e$

Then we need to solve $ye^{y} < -0.5e$ with $y=1-x$.

$g(y)=ye^y$, then $g'(y) = e^y + ye^y = e^y(1+y)$, so $g(y)$ reached its minimum when $y = -1$, i.e $g_{min} = g(-1) = -e^{-1}$, which is larger than $-0.5e$

So the inequality has no solution.