
Metin E. answered 03/16/24
Experienced Community College Teacher Specializing in Statistics
The iterations in Newton's method are given by:
xn + 1 = xn - f(xn) / f'(xn)
Let f be the function given on R by f(x) = 2 - x + sin(x)
The derivative of f is given on R by:
f'(x) = cos(x) - 1
x1 = 5
x2 = x1 - f(x1) / f'(x1)
= 5 - (2 - 5 + sin(5)) / (cos(5) - 1)
= 5 - (sin(5) - 3) / (cos(5) - 1)
aaaand we need the calculator :-)