
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) = x4 - 20
The derivative of f is given on R by:
f'(x) = 4x3
x1 = 2
x2 = x1 - f(x1) / f'(x1)
= 2 - (24 - 20) / (4 * 23)
= 2 - (16 - 20) / (4 * 8)
= 2 - (-4) / 32
= 2 + 4 / 32
= 2 + 1 / 8
= 17 / 8
= 2.125
x3 = x2 - f(x2) / f'(x2)
= 2.125 - (2.1254 - 20) / (4 * 2.1253)
Just put this into the calculator :-)