Valentin K. answered 03/15/24
Expert PhD tutor in Calculus, Statistics, and Physics
x3 + 6x2 + 9x + 1= 0
Newton's method:
xn+1 = xn - f(xn)/f'(xn) = xn - (xn3 + 6xn2 + 9xn + 1) / (3xn2 + 12xn + 9)
The successive approximations are best done in Excel.
x1 = 0
x2 = x1 - (x13 + 6x12 + 9x1 + 1) / (3x12 + 12x1 + 9) = -0.111111111
x3 = x2 - (x23 + 6x22 + 9x2 + 1) / (3x22 + 12x2 + 9) = -0.120548433
x4 = x3 - (x33 + 6x32 + 9x3 + 1) / (3x32 + 12x3 + 9) = -0.120614755
x5 = x4 - (x43 + 6x42 + 9x4 + 1) / (3x42 + 12x4 + 9) = -0.120614758
We stop at x5 because the first 7 decimal places stopped changing.
Rounded to 7 decimal places: x ≈ -0.1206148

Doug C.
Desmos works fairly well too. desmos.com/calculator/gdlycfehbl03/15/24