
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) = x3 - 3x - 5
The derivative of f is given on R by:
f'(x) = 3x2 - 3
x1 = 3
x2 = x1 - f(x1) / f'(x1)
= 3 - (33 - 3 * 3 - 5) / (3 * 32 - 3)
= 3 - (27 - 9 - 5) / (3 * 9 - 3)
= 3 - 13 / (27 - 3)
= 3 - 13 / 24
= 72 / 24 - 13 / 24
= 59 / 24