Paul's Online Notes
Paul's Online Notes
Home / Calculus I / Applications of Derivatives / Newton's Method
Show Mobile Notice Show All Notes Hide All Notes
Mobile Notice
You appear to be on a device with a "narrow" screen width (i.e. you are probably on a mobile phone). Due to the nature of the mathematics on this site it is best views in landscape mode. If your device is not in landscape mode many of the equations will run off the side of your device (should be able to scroll to see them) and some of the menu items will be cut off due to the narrow screen width.

Section 4.13 : Newton's Method

1. Use Newton’s Method to determine \({x_{\,2}}\) for \(f\left( x \right) = {x^3} - 7{x^2} + 8x - 3\) if \({x_{\,0}} = 5\)

Show All Steps Hide All Steps

Start Solution

There really isn’t that much to do with this problem. We know that the basic formula for Newton’s Method is,

\[{x_{n + 1}} = {x_n} - \frac{{f\left( {{x_n}} \right)}}{{f'\left( {{x_n}} \right)}}\]

so all we need to do is run through this twice.

Here is the derivative of the function since we’ll need that.

\[f'\left( x \right) = 3{x^2} - 14x + 8\]

We just now need to run through the formula above twice.

Show Step 2

The first iteration through the formula for \({x_{\,1}}\) is,

\[{x_{\,1}} = {x_{\,0}} - \frac{{f\left( {{x_{\,0}}} \right)}}{{f'\left( {{x_{\,0}}} \right)}} = 5 - \frac{{f\left( 5 \right)}}{{f'\left( 5 \right)}} = 5 - \frac{{ - 13}}{{13}} = 6\] Show Step 3

The second iteration through the formula for \({x_{\,2}}\) is,

\[{x_{\,2}} = {x_{\,1}} - \frac{{f\left( {{x_{\,1}}} \right)}}{{f'\left( {{x_{\,1}}} \right)}} = 6 - \frac{{f\left( 6 \right)}}{{f'\left( 6 \right)}} = 6 - \frac{9}{{32}} = 5.71875\] So, the answer for this problem is \(\require{bbox} \bbox[2pt,border:1px solid black]{{{x_{\,2}} = 5.71875}}\).

Although it was not asked for in the problem statement the actual root is 5.68577952608963. Note as well that this did require some computational aid to get and it not something that you can, in general, get by hand.