• retagged by
6,495 views
1 1 vote

The Newton-Raphson iteration $x_{n+1} = \frac{1}{2}\left(x_n+\frac{R}{x_n}\right)$ can be used to compute the

  1. square of R      
  2. reciprocal of R      
  3. square root of R      
  4. logarithm of R

1 Answer

Best answer
3 3 votes

The given expression can be rewritten as,

xn+1 = xn - (xn2 -R)/2xn

therefore, it computes the square root R.
answer (C) is correct.

• selected by
Answer:
Position:
Show:

Related questions

4 4 votes
2 answers 2 answers
2.5k
2.5k views
Kathleen asked Oct 9, 2014
2,461 views
Newton-Raphson iteration formula for finding $\sqrt[3]{c}$, where $c 0$ is$x_{n+1}=\frac{2x_n^3 + \sqrt[3]{c}}{3x_n^2}$$x_{n+1}=\frac{2x_n^3 - \sqrt[3]{c}}{3x_n^2}$$x_{...
0 0 votes
3 answers 3 answers
3.4k
3.4k views
Kathleen asked Oct 8, 2014
3,380 views
The iteration formula to find the square root of a positive real number $b$ using the Newton Raphson method is$x_{k+1} = 3(x_k+b)/2x_k$$x_{k+1} = (x_{k}^2+b)/2x_k$$x_{k+1...
4 4 votes
2 answers 2 answers
13.9k
13.9k views
Kathleen asked Sep 29, 2014
13,851 views
The Newton-Raphson method is used to find the root of the equation $X^2-2=0$. If the iterations are started from -1, the iterations willconverge to -1converge to $\sqrt{2...
6 6 votes
2 answers 2 answers
4.0k
4.0k views
Kathleen asked Sep 23, 2014
3,951 views
The Newton-Raphson method is to be used to find the root of the equation $f(x)=0$ where $x_o$ is the initial approximation and $f’$ is the derivative of $f$. The method ...