Section 4.13 : Newton's Method
2. Use Newton’s Method to determine x2 for f(x)=xcos(x)−x2 if x0=1
Show All Steps Hide All Steps
Start SolutionThere really isn’t that much to do with this problem. We know that the basic formula for Newton’s Method is,
xn+1=xn−f(xn)f′(xn)so all we need to do is run through this twice.
Here is the derivative of the function since we’ll need that.
f′(x)=cos(x)−xsin(x)−2xWe just now need to run through the formula above twice.
Show Step 2The first iteration through the formula for x1 is,
x1=x0−f(x0)f′(x0)=1−f(1)f′(1)=1−−0.4596976941−2.301168679=0.8002329432Don’t forget that for us angles are always in radians so make sure your calculator is set to compute in radians.
Show Step 3The second iteration through the formula for x2 is,
x2=x1−f(x1)f′(x1)=0.8002329432−f(0.8002329432)f′(0.8002329432)=0.8002329432−−0.08297883948−1.478108132=0.7440943985 So, the answer for this problem is \require{bbox} \bbox[2pt,border:1px solid black]{{{x_{\,2}} = 0.7440943985}}.Although it was not asked for in the problem statement the actual root is 0.739085133215161. Note as well that this did require some computational aid to get and it not something that you can, in general, get by hand.