Newton's method is xn = xn-1 - f(xn-1)/f'(xn-1) starting with x0 = guess like 1
You need to calculate f'(x) = -3x2
first iteration: x1 = 1 - 1/(-3) = 1.3333333333 and keep going until the change in x is less than .001
For second part, go to Desmos.com and type in y=2-x^3 and hover over the dot on the x axis where the zero is. The coordinates will be given. If it doesn't have enough sig figs, use the wrench on upper right to change your window. You can do the same on a Graphing calculator.