Calculus/Newton's Method

From testwiki
Revision as of 15:18, 15 January 2019 by imported>MarcGarver (Reverted edits by Thunderblaze997 (talk) to last version by JackOPerez)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Template:Calculus/Top Nav

Newton's Method (also called the Newton-Raphson method) is a recursive algorithm for approximating the root of a differentiable function. We know simple formulas for finding the roots of linear and quadratic equations, and there are also more complicated formulae for cubic and quartic equations. At one time it was hoped that there would be formulas found for equations of quintic and higher-degree, though it was later shown by Neils Henrik Abel that no such equations exist. The Newton-Raphson method is a method for approximating the roots of polynomial equations of any order. In fact the method works for any equation, polynomial or not, as long as the function is differentiable in a desired interval.

Newton's Method

Let f(x) be a differentiable function. Select a point x0 based on a first approximation to the root, arbitrarily close to the function's root. To approximate the root you then recursively calculate using:

xn+1=xnf(xn)f(xn)

As you recursively calculate, the xn+1's often become increasingly better approximations of the function's root.

In order to explain Newton's method, imagine that x0 is already very close to a 0 of f(x) . We know that if we only look at points very close to x0 then f(x) looks like its tangent line. If x0 was already close to the place where f(x) was 0, and near x0 we know that f(x) looks like its tangent line, then we hope the 0 of the tangent line at x0 is a better approximation then x0 itself.

The equation for the tangent line to f(x) at x0 is given by

y=f(x0)(xx0)+f(x0)

Now we set y=0 and solve for x .

0=f(x0)(xx0)+f(x0)
f(x0)=f(x0)(xx0)
f(x0)f(x0)=(xx0)
x=f(x0)f(x0)+x0

This value of x we feel should be a better guess for the value of x where f(x)=0 . We choose to call this value of x1 , and a little algebra we have

x1=x0f(x0)f(x0)

If our intuition was correct and x1 is in fact a better approximation for the root of f(x) , then our logic should apply equally well at x1 . We could look to the place where the tangent line at x1 is zero. We call x2 , following the algebra above we arrive at the formula

x2=x1f(x1)f(x1)

And we can continue in this way as long as we wish. At each step, if your current approximation is xn our new approximation will be xn+1=xnf(xn)f(xn) .

Examples

Find the root of the function f(x)=x2.

Figure 1: A few iterations of Newton's method applied to y=x2 starting with x0=4 . The blue curve is f(x) . The other solid lines are the tangents at the various iteration points.

x0=4x1=x0f(x0)f(x0)=4168=2x2=x1f(x1)f(x1)=244=1x3=x2f(x2)f(x2)=112=12x4=x3f(x3)f(x3)=12141=14x5=x4f(x4)f(x4)=1411612=18x6=x5f(x5)f(x5)=1816414=116x7=x6f(x6)f(x6)=125618=132

As you can see xn is gradually approaching 0 (which we know is the root of f(x)) . One can approach the function's root with arbitrary accuracy.

Answer: f(x)=x2 has a root at x=0.

Notes

Figure 2: Newton's method applied to the function
f(x)={x4,for x44x,for x<4
starting with x0=2 .

This method fails when f(x)=0 . In that case, one should choose a new starting place. Occasionally it may happen that f(x)=0 and f(x)=0 have a common root. To detect whether this is true, we should first find the solutions of f(x)=0 , and then check the value of f(x) at these places.

Newton's method also may not converge for every function, take as an example:

f(x)={xr,for xrrx,for ,x<r

For this function choosing any x1=rh then x2=r+h would cause successive approximations to alternate back and forth, so no amount of iteration would get us any closer to the root than our first guess.

Figure 3: Newton's method, when applied to the function f(x)=x5x+1 with initial guess x0=0 , eventually iterates between the three points shown above.

Newton's method may also fail to converge on a root if the function has a local maximum or minimum that does not cross the x-axis. As an example, consider f(x)=x5x+1 with initial guess x0=0 . In this case, Newton's method will be fooled by the function, which dips toward the x-axis but never crosses it in the vicinity of the initial guess.

See also

Template:Commons category

Template:Calculus/Top Nav Template:Calculus/TOC