Question:

Using Newton-Raphson method to solve $f(x) = e^{-x} - x$ with initial guess $x_0 = 0$, find the next iteration.

Show Hint

Newton-Raphson requires function and derivative at a guess point. Formula: $x_{n+1} = x_n - \frac{f(x_n)}{f'(x_n)}$
Updated On: Jun 24, 2025
  • 0.56
  • -0.50
  • 0.50
  • -0.56
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is C

Solution and Explanation

Step 1: Newton-Raphson Formula 
\[ x_{n+1} = x_n - \frac{f(x_n)}{f'(x_n)} \] Step 2: Compute at $x_0 = 0$ 
\[ f(x) = e^{-x} - x, f(0) = 1 - 0 = 1 \] \[ f'(x) = -e^{-x} - 1, f'(0) = -1 - 1 = -2 \] \[ x_1 = 0 - \frac{1}{-2} = 0.5 \]

Was this answer helpful?
0
0