← 2019 Paper 2
UPSC 2019 Maths Optional Paper 2 Q5b — Step-by-Step Solution
10 marks · Section B
Newton-Raphson method (convergence, geometric meaning) · Numerical Analysis · asked 6× in 13 yrs · Read the full method →
Question
Apply Newton-Raphson method, to find a real root of transcendental equation xlog10x=1.2, correct to three decimal places.
Technique
Newton–Raphson on f(x)=xlog10x−1.2, using f′(x)=log10x+M with M=1/ln10=0.434294.
Solution
Setup. Let f(x)=xlog10x−1.2. Recall log10x=ln10lnx, ln10=2.302585, and ln101=0.434294 (=M, the modulus).
f′(x)=log10x+x⋅xln101=log10x+0.434294.
Newton iteration: xn+1=xn−f′(xn)f(xn).
Step 1 — Locate the root
f(2)=2log102−1.2=2(0.30103)−1.2=−0.59794<0.
f(3)=3log103−1.2=3(0.47712)−1.2=+0.23136>0.
Root in (2,3). Take x0=2.5.
Step 2 — Iterations
x0=2.5: log102.5=0.39794.
f=2.5(0.39794)−1.2=−0.20515, f′=0.39794+0.43429=0.83223.
x1=2.5−0.83223−0.20515=2.5+0.24650=2.74650.
x1=2.74650: log102.74650=0.438756.
f=2.74650(0.438756)−1.2=1.205112−1.2=0.005112,
f′=0.438756+0.434294=0.873050.
x2=2.74650−0.8730500.005112=2.74650−0.005855=2.740645.
x2=2.740645: f=2.740645(0.437809)−1.2≈0.000003≈0.
x3=2.740646.
Converged. To three decimals:
Answer
x≈2.741.