Next: About this document ...
Up: lab_template
Previous: lab_template
Subsections
Many problems in mathematics, science, engineering, and business eventually come down to finding the roots of a nonlinear equation. It is a sad fact of life that many mathematical equations cannot be solved analytically. You already know about the formula for solving quadratic polynomial equations. You might not know, however, that there are formulas for solving cubic and quartic polynomial equations. Unfortunately, these formulas are so cumbersome that they are hardly ever used. Even more unfortunately, it has been proven that no formula can exist for finding roots of quintic or higher polynomials. Furthermore, if your equations involve trig functions, then it is even easier to find equations that do not have analytical solutions. For example, the following simple equation cannot be solved to give a formula for x.
The need to solve nonlinear equations that cannot be solved analytically has led to the development of numerical methods. One of the most commonly used numerical methods is called Newton's method or the Newton-Raphson method. The idea of Newton's method is relatively simple. Suppose you have a nonlinear equation of the form
where
is a differentiable function. Then the idea of Newton's method is to start with an initial guess
for the root and to use the tangent line to
at
to approximate
. The equation for the tangent line appears below.
If the tangent line is a good approximation to
, then the
intercept of the tangent line should be a good approximation to the root. Call this value of
where the tangent line intersects the
axis
. We can solve the equation above to get the following formula.
In practice, unless the starting point
is very close to the root, the value
is not close enough to the root we are seeking, so Newton's method is applied again using the tangent line at
. This process can be repeated, leading to a sequence of values where the value of
is determined from the equation
For example, consider the equation from above,
If you want to solve this equation using Newton's method, the first thing to do is to write it in standard form as
Then, plot the expression to get an idea of where the roots are. You may have to adjust the plot range to locate all of the roots. The following commands show that there are exactly three roots, one at
, and two others at about 2 and -2.
> f:=x->sin(x)-x/2;
> plot(f(x),x=-6..6);
It isn't very hard to write a Maple command that will do one step of Newton's method. The examples below show a very simple method for doing so, using the function
defined above and a starting value of
. Further iterations can be obtained by using composition, as shown below
> newt:=x->x-f(x)/D(f)(x);
> newt(2.2);
> newt(newt(2.2));
> (newt@@3)(2.2);
However, to simplify things for you, two commands, Newton and NewtonPlot, have been programmed for you. The Newton command takes three arguments: the function, the starting value, and the number of iterations. See the example below for three iterations. Note that these commands are part of the CalcP7 package, so you must load the package first.
> with(CalcP7):
> Newton(f(x),x=2.2,3);
> NewetonPlot(f(x),x=2.2);
One of the problems with Newton's method is knowing when to stop. With a numerical method, you can never get a root exactly, but only a numerical approximation to the root. There are basically two measures of how good your approximation to the root is. One is the absolute value of
. If this number is less than a certain tolerance, then you should have a good approximation to the root. The other measure is the change in the value of
. If the value of
and
are very close, then this can also be a criterion for stopping. You should go back to the example above and experiment with changing the number of iterations.
The worst thing about Newton's method is that it may fail to converge. The key to getting Newton's method to converge is to select a good starting value. The best way to do this is to plot the function and determine approximately where the roots are. Then, use these values to start Newton's method.
- Consider the equation
- Plot both functions on the same graph to see how many times they intersect.
- Approximate each solution by using the Newton command from the background with various starting values until you are able to find all solutions. For each solution you find, state how many iterations were needed to approximate the solution with error no greater than
.
- Repeat exercise 1 using the equation
- Consider the function from the background
. Plot the function over the interval
. Looking at the plot, you can see three roots, one at
, one near
and one near
. Use Newton's method with a guess
. Which root did you expect to find? Which root did you actually find? How many iterations did it take to acheive an error no greater than
?
Next: About this document ...
Up: lab_template
Previous: lab_template
Dina J. Solitro-Rassias
2009-12-02