Patrick B. answered 08/19/21
Math and computer tutor/teacher
y = x^6 - x^5 - 6x^4 - x^2 +x+10
y' = 6x^5 - 5x^4 - 24x^3 - 2x + 1
Functions are graphed at Desmos dot com
online Calculator found at
Keisan dot casio dot com / exec / system / 1244946907
or google Newtons method calculator
Newton's Method formula:
x(N) = x(N-1) - f(x(N-1))/f'(x(N-1))
Will do 2 iterations
Per the graph, the smallest solution is close to -2,
so that will be the starting approximation.
x0 = -2
x1 = x(0) - f( x(0)) / f' (x(0))
= -2 - f(-2) / f'(-2)
= -2 - 4 / -75
= -2 + 4/75
= -1.9466666666666666666666666666667
x2 = x(1) - f(x(1))/f'(x(1))
= -1.946... - .4975/-57.46
= -1.9373418029933867037939436129481.....
Best approximation per Newton's method
-1.938228834702721447462
Here are the other solutions:
Using -1.22 as the starting approximation, the best approximation is -1.219979965004372692522
Using 1.139 as the starting approximation, the best approximation is 1.139293745967452526157
Using 3 as the starting approximation, the best approximation is 2.989841020211046396837
the other 2 solutions are complex..