
William W. answered 04/19/20
Experienced Tutor and Retired Engineer
Step 1: Create your function.
In this case since you want the fourth root of 2 you can say x4 = 2 or x4 - 2 = 0 so your function is f(x) = x4 - 2
Step 2: Create the equation for finding the next iteration:
Use the "Newton's Method" equation xn+1 = xn - f(xn)/f '(xn)
In this case f '(x) = 4x3 so the equation becomes xn+1 = xn - (xn4 - 2)/(4xn3)
Step 3: Pick a starting point (x0)
In this case, we are told to start at x0 = 1 for the positive root and x0 = -1 for the negative root.. Working first to find the positive root:
xn+1 = xn - (xn4 - 2)/(4xn3)
x1 = x0 - (x04 - 2)/(4x03)
x1 = 1 - (14 - 2)/(4•(1)3)
x1 = 1.25
Then repeat with xn = 1.25
x2 = 1.25 - (1.254 - 2)/(4•(1.25)3)
x2 = 1.1935
If you were going to find the actual answer, you would keep going until there is no change in the number when you do the iteration. In this case, we are just asked to find x2.
Repeat this process with x0 = -1 to find the negative root:
x1 = (-1) - ((-1)4 - 2)/(4•(-1)3)
x1 = -1.25
x2 = (-1.25) - ((-1.25)4 - 2)/(4•(-1.25)3)
x2 = -1.1935