Q.33 Consider a nonlinear algebraic equation, 𝑒
𝑥 − 2 = 0. Using the Newton-Raphson
method, with the initial guess of 𝑥0 = 1, the approximated value of the root of the
equation after one iteration is________.
(Round off to two decimal places)
Newton-Raphson Method: Solve ex − 2 = 0 in One Iteration
The Newton–Raphson method is used to solve the nonlinear equation
ex − 2 = 0. Starting from the initial guess
x0 = 1, one iteration gives the approximate root
x1 ≈ 0.74 (rounded to two decimal places).
Newton-Raphson Method Formula
The general Newton–Raphson iteration formula is:
xn+1 = xn −
f(xn) / f′(xn)
For this problem:
- f(x) = ex − 2
- f′(x) = ex
This method exhibits quadratic convergence and is well suited for
exponential equations.
Step-by-Step Iteration
- Initial guess:
x0 = 1
- Evaluate the function:
f(1) = e1 − 2 ≈ 2.71828 − 2 = 0.71828
- Evaluate the derivative:
f′(1) = e1 ≈ 2.71828
- Apply the Newton–Raphson formula:
x1 = 1 − (0.71828 / 2.71828)
- Simplify:
x1 = 1 − (1 − 2/e) = 2/e ≈ 0.73576
- Rounded to two decimal places:
x1 ≈ 0.74
Correct Answer
The approximate root after one Newton–Raphson iteration is:
x ≈ 0.74
Common Mistakes Explained
- Forgetting the derivative:
Taking f′(x) = 1 incorrectly gives
x1 ≈ 0.28, which is far from the correct value. - Misrounding e:
Using e ≈ 2.7 still gives ~0.74, but precise calculation confirms accuracy. - Solving the wrong equation:
Treating ex = 1 leads to x = 0, which is not the given problem. - Confusing with two iterations:
A second iteration gives x2 ≈ 0.85, but the question asks for
only one iteration.
This result matches GATE-style numerical answers rounded to
two decimal places.


