I want to solve the equation $ x + \ln(x) = 0 $ which has a root $ x^* \approx 0.5$.
I am given three iterations:
$$ \quad x_{n+1} = - \ln(x_n)\\ \quad x_{n+1} = e^{-x_n} \\ x_{n+1} =\frac{x_n + e^{-x_n}}{2} $$
What method do I use to find equation 3?