Consider the function \(f(x) = e^{-x} - x\). Using the Newton-Raphson method, obtain the first improved approximation starting from the initial guess \(x_0 = 0.5\). Enter the value of the second approximation, correct to two decimal places.}
Show Hint
For Newton-Raphson, be systematic. For each iteration, calculate \(f(x_n)\), then \(f'(x_n)\), and then plug them into the formula \(x_{n+1} = x_n - f(x_n)/f'(x_n)\). Keep sufficient precision during intermediate steps.