Welcome to AE Resources
ROOT FINDING

ROOT FINDING

Newton-Raphson Method
The Newton-Raphson method is an improved version of simple fixed-point method. This method works best if an analytical derivative of the function is known. This method first requires an initial guess for the function, after which the solution is found from the function (just as in the simple fixed point method) and the derivative of the function. This can be written mathematically as:
Initial guess Mi  =  1.0 Mi + 1  =  M1 − (g(M1))/(g’(Mi))
where g’(Mi) = (g(Mi − 1 − g(Mi))/(Mi − 1 − Mi). The process is illustrated graphically in Fig. 2↓. What happens when the derivative, g’(Mi), is not known?
figure images/approx_Slope.jpg
Figure 2 Illustration of the secant or Newton-Raphson methods.

Multiple Roots
If a function has multiple roots (2 or more), then any of the methods can be modified to search the entire limits of interest for multiple roots. If the function has a tangent to zero, then it may not change sign, so a bracketing method may not work in all instances. The Newton-Raphson method can be modified for use with multiple roots:
xi + 1 = xi − (f(xi)f’(xi))/([f’(xi)]2 − f(xi)f’’(xi)) Mi + 1 = Mi − (g(mi)g’(Mi))/([g’(Mi)]2 − g(Mi)g’’(Mi))
figure images/multiple_roots.jpg
Figure 3 Illustration of a function with multiple roots.


Next Page →
Next Page →
← Previous Page
← Previous Page