By Newton - Raphson's method the formula for finding the square root of any number $y$ is:
- $x _{n + 1} = \dfrac {1}{2}\left [x _{n} + \dfrac {y}{x _{n}}\right ]$
- $x _{n + 1} = \dfrac {1}{2}\left [x _{0} + \dfrac {y}{x _{0}}\right ]$
- $x _{n + 1} = \dfrac {1}{3}\left [2x _{n} + \dfrac {y}{x _{n}^{2}}\right ]$
- $x _{n + 1} = \dfrac {1}{3}\left [2x _{0} + \dfrac {y}{x _{0}^{2}}\right ]$
Reveal answer
Fill a bubble to check yourself
A
Correct answer
Explanation
Let $x = \sqrt { y } $
$\implies { x }^{ 2 } = y$
$\implies { x }^{ 2 }-y = 0$
Iterative eqn. for Newton Raphson method is
${ x } _{ n+1 } = { { x } _{ n } }-\dfrac { f({ { x } _{ n } }) }{ f\prime ({ { x } _{ n } }) } $
Substitute $f(x) = { x }^{ 2 }-y$
$\implies f'(x) = 2x$ ........... $[\because\ y$ is any number $\therefore f'(y) =0]$
${ x } _{ n+1 } = { { x } _{ n } }-\dfrac { { x } _{ n }^{ 2 }-y }{ 2{ x } _{ n } } $
$= { x } _{ n }-\dfrac { { x } _{ n }^{ 2 } }{ 2{ x } _{ n } } +\dfrac { y }{ 2{ x } _{ n } } $
$= { x } _{ n }-\dfrac { { x } _{ n } }{ 2 } +\dfrac { y }{ 2{ x } _{ n } } $
${ x } _{ n+1 } = \dfrac { { x } _{ n } }{ 2 } +\dfrac { y }{ 2{ x } _{ n } } $
$\boxed { { x } _{ n+1 } = \dfrac { 1 }{ 2 } \left[ { x } _{ n }+\dfrac { y }{ { x } _{ n } } \right] } $