in Numerical Methods recategorized by
2,493 views
0 votes
0 votes

The iteration formula to find the square root of a positive real number $b$ using the Newton Raphson method is

  1. $x_{k+1} = 3(x_k+b)/2x_k$

  2. $x_{k+1} = (x_{k}^2+b)/2x_k$

  3. $x_{k+1} = x_k-2x_k/\left(x^2_k+b\right)$

  4. None of the above

in Numerical Methods recategorized by
2.5k views

3 Answers

3 votes
3 votes
Best answer
Answer: B

$x_{k+1} = x_k - \frac{f(x_k)}{f'(x)} = x_k - \frac{(x_k^2 - b)}{2x_k} = \frac{2x^2_k - x^2_k + b}{2x_k} = \frac{x^2_k + b}{2x_k}$
0 votes
0 votes
Answer is D. F(x)=x^2-b. Applying the general formula we can find the answer.

1 comment

No answer is only B...
0
0
0 votes
0 votes

take x= root b

x2=b

f(x)=x2-b

xn+1 = (x2+b) / 2x

Related questions

Quick search syntax
tags tag:apple
author user:martin
title title:apple
content content:apple
exclude -tag:apple
force match +apple
views views:100
score score:10
answers answers:2
is accepted isaccepted:true
is closed isclosed:true