We will describe here a method for locating a root of an equation f(x) = 0. This method is called the
Newton-Raphson Method. Assume that the solution exists and is denoted c. Start at a point x1 . The tangent
line (x1,f(x1 )) intersects the x-axis at a point x2 , which is closer to c than x1 . Determine a new point x3 : the
intersection of the line (x2 , f(x2)) and the x-axis. Continuing, we obtain better and better approximations x4, x5,
. . . , xn to the root c.
Hence
|
|
f ' (x[n-1]) = -f(x[n-1]) / (x[n]
- x[n-1])
|
|
|
x[n] = x[n-1] - f
(x[n-1]) / f ' (x[n] )
|
starting at x1 = 5. Find x4
and evaluate f(x4 ).
(Step by Step Solution -- ) :
| Application(NR) #2 | Differentials | Main |