Newton-Raphson method is used to compute a root of the equation 2x2+5x−9=0 with 4.5 as the initial value. The approximation after one iteration is ________
2.15
Open in App
Solution
The correct option is A 2.15 The equation is f(x)=2x2+5x−9=0
Newton-Raphson iteration equation is x1=x0−[f(x0)f′(x0)] f(x0)=2x20+5x0−9 f′(x0)=4x0+5 ∴x1=x0−[2x20+5x0−94x0+5] =4x20+5x0−2x20−5x0+94x0+5 =2x20+94x0+5
Put x0=4.5 (as given) x1=2×(4.5)2+94×(4.5)+5=2.15