Newton's method Guide, Meaning , Facts, Information and Description
In numerical analysis, Newton's method (or the Newton-Raphson method) is an efficient algorithm for finding approximations to the zero (or root) of a real-valued function. As such, it is an example of a root-finding algorithm. It can also be used to find the minimum or maximum of such a function, so Newton's method is also an optimization algorithm.
| Table of contents |
|
2 Example 3 History 4 Practical considerations 5 Generalization 6 References |
The idea of the method is as follows: one starts with a value which is reasonably close to the true zero, then replaces the function by its tangent (which can be computed using the tools of calculus) and computes the zero of this tangent (which is easily done with elementary algebra). This zero of the tangent will typically be a better approximation to the function's zero, and the method can be iterated.
Suppose f : [a, b] -> R is a differentiable function defined on the interval [a, b] with values in the real numbers R. We start with an arbitrary value x0 (the closer to the zero the better) and then define for each natural number n:
Description of the method
Here, f ' denotes the derivative of the function f.
One can prove that, if f ' is continuous, and if the unknown zero x is isolated, then there exists a neighborhood of x such that for all start values x0 in that neighborhood, the sequence (xn) will converge towards x. Furthermore, if f '(x) ≠ 0, then the convergence is quadratic, which intuitively means that the number of correct digits roughly doubles in every step.
Consider the problem of finding the positive number x with cos(x) = x3. We can rephrase that as finding the zero of f(x) = cos(x) - x3. We have f '(x) = -sin(x) - 3x2. Since cos(x) ≤ 1 for all x and x3 > 1 for x>1, we know that our zero lies between 0 and 1. We try a start value of x0 = 0.5.
The example in JavaScript. To run it copy the text including the script tags into a new text file, give it a name with the extension .html and open it in a web browser.
x = 0.5
for (i=0; i<=99; i++) {
Here is the same using a calculator.
Newton's method was described by Isaac Newton in De analysi per aequationes numero terminorum infinitas (written in 1669, published in 1711 by William Jones) and in De metodis fluxionum et serierum infinitarum (written in 1671, translated and published as Method of Fluxions in 1736 by John Colson). However, his description differs substantially from the modern description given above: Newton applies the method only to polynomials. He does not compute the successive approximations xn, but computes a sequence of polynomials and only at the end, he arrives at an approximation for the root x. Finally, Newton views the method as purely algebraic and fails to notice the connection with calculus. Isaac Newton probably derived his method from a similar but less precise method by François Viète. The essence of Viète's method can be found in the work of Sharaf al-Din al-Tusi.
Newton's method was first published in 1685 in A Treatise of Algebra both Historical and Practical by John Wallis. In 1690, Joseph Raphson published a simplified description in Analysis aequationum universalis. Raphson again viewed Newton's method purely as an algebraic method and restricted its use to polynomials, but he describes the method in terms of the successive approximations xn instead of the more complicated sequence of polynomials used by Newton. Finally, in 1740, Thomas Simpson described Newton's method as an iterative methods for solving general nonlinear equations using fluxional calculus, essentially giving the description above. In the same publication, Simpson also gives the generalization to systems of two equations and notes that Newton's method can be used for solving optimization problems by setting the gradient to zero.
In general the convergence is quadratic: the error is essentially squared at each step (that is, the number of accurate digits doubles in each step). There are some caveats, however. First, Newton's method requires that the derivative be calculated directly. If instead the derivative is approximated by the slope of the line through two points on the function's graph, the Secant method results--though depending on how one measures computational effort, the Secant method may be more efficient. Second, if the start value is too far removed from the true zero, Newton's method can fail to converge at all. Because of this, all practical implementations of Newton's method put an upper limit on the number of iterations and perhaps on the size of the iterates. Third, if the root being sought has multiplicity greater than one, the convergence rate is reduced to linear (errors reduced by a constant factor at each step) unless special steps are taken.
One may use Newton's method also to solve systems of n (non-linear) equations, which amounts to finding the zeros of continuously differentiable functions F : Rk -> Rk. In the formulation given above, one then has to multiply with the inverse of the k-by-k Jacobian matrix F '(xn) instead of dividing by f '(xn). Rather than actually computing the inverse of this matrix, one can save time by solving the system of linear equations
The method can also be applied to find zeros of complex functions. For many complex functions, the set of all start values that cause the method to converge to the true zero (the "basin of attraction") is a fractal.Example
The correct digits are underlined in the above example. In particular, all digits of x6 are correct. We see that the number of correct digits after the decimal point increases from 2 (for x3) to 5 and 10, illustrating the quadratic convergence.
<script>
function NewtonIterationFnct(x) {
return x - (Math.cos(x) - x*x*x) / (-Math.sin(x) - 3*x*x)
} document.write("Iteration " + i + ": ")
document.write(x)
document.write('<br>')
xold = x
x = NewtonIterationFnct(x)
if (x == xold) break
}
</script>
History
Practical considerations
Generalization
for the unknown xn+1 - xn.
Again, this method only works if the initial value x0 is close enough to the true zero. Typically, a region which is well-behaved is located first with some other method and Newton's method is then used to "polish" a root which is already known approximately.
