Posted by Elizabeth on Friday, July 20, 2012 at 10:56pm.
Newton's method for the root of f(x) is:
x_{n+1} = x_{n} - f(x_{n})/f'(x_{n})
= x_{n} - (x_{n}^2 - a)/(2 x_{n}) =
1/2 (x_{n} + a/(x_{n}))
This rule is not so convenient, because you need to divide by x_{n} at each step (division is slower than multiplication). A rule without division can be obtained by writing the square root as the root of the function:
f(x) = x^(-2) - 1/a
Newton's method then yields:
x_{n+1} = x_{n} -
( x_{n}^(-2) - 1/a)/(-2x_{n}^(-3)) =
1/2 x_{n} (3 - x_{n}^2/a)
So, in each step you now only have a division by a, so you only have to compute 1/a once.
Related Questions
limit calc question - 2 questions!!! 1. Limit X approaching A (X^1/3-a^1/3)/ x-a...
Calculus - Am I right so far? G(x)=e^x sqrt(1+x^2) =e^x(1+x^2)^1/2 =e^x(1/2)(1+x...
Calculus - Use the General Power Rule or the Shifting and Scaling Rule to find ...
Calculus - L'Hospital's Rule Lim(lnx)^(x-1) x->1+ This is what I ...
calculus - how do not understand how to find a deriviative of this function?Do i...
Math - Calculus Question. - hey can someone explain to me the relationship ...
CALCULUS!! OH DEATH!!! - I need to solve: Lim as x is approaching 1/4, for (4x-1...
calculus - how do not understand how to find a deriviative of this function?Do i...
algebra - On one evening at 6 p.m., the temperature was 24°F. As the night ...
Math, Calculus - Find the derivative of the function. y= xcosx - sinx What's...
For Further Reading