
William W. answered 08/17/24
Experienced Tutor and Retired Engineer
Newton's Method is a way of approximating a zero. Notice if you take 4sin(x) = x and subtract "x" from both sides, you get 4sin(x) - x = 0 and this very much looks like what you would get if you had the function f(x) = 4sin(x) - x and you set it equal to zero to find the x-intercepts. So, for us to use Newton's method, we consider f(x) = 4sin(x) - x.
Newton's Method uses a straight line to estimate a function value close by a given value of "x" and iterates. First you select a starting point and calculate a "new" value of "x" that is then used in your calculation that produces a newer value of "x" and so forth until the value of "x" doesn't change anymore.
Since Newton's Method uses a straight line, we need a slope. The slope that is used is the derivative. The equation that is used is a variant of the point-slope form and looks like this:
xn+1 = xn - f(xn)/(f '(xn))
Meaning that we use our initial value of "x" (which in this case is x = 1) to find a new value of "x" and we keep repeating.
Since this problem uses f(x) = 4sin(x) - x, we also need the derivative which is:
f '(x) = 4cos(x) - 1
So, to start with, we do:
x2 = x1 - f(x1)/f '(x1)
where x1 = 1 meaning f(x1) = f(1) = 4sin(1) - 1 = 2.365883939 and f '(x1) - f '(1) = 4cos(1) - 1 = 1.161209223
So x2 = -1.037431233
Then we calculate x3 using:
x3 = x2 - f(x2)/f '(x2)
or x3 = 1.29....
Then we calculate x4 using:
x4 = x3 - f(x3)/f '(x3)
or x4 = -23.10...
And you keep going:
x5 = -13.47. . .
x6 = -20.52. . .
x7 = -8.69. . .
x8 = -7.17. . .
x9 = -9.84. . .
x10 = -7.38. . .
x11 = -11.99. . .
x12 = -17.98. . .
x13 = -31.16. . .
x14 = -42.36. . .
x15 = -4.22. . .
x16 = -1.55. . .
x17 = -4.23. . .
x18 = -1.52. . .
x19 = -4.65. . .
x20 = 2.33. . .
x21 = 2.48. . .
x22 = 2.474593
x23 = 2.474577
x24 = 2.474577
It takes a LONG time to get to values that don't change anymore using x1 = 1