Roman C. answered 04/23/17
Tutor
5.0
(851)
Masters of Education Graduate with Mathematics Expertise
Let's neaten things up:
f(x) = 2x3 - 6x2 + 3x + 1
f'(x) = 6x2 - 12x + 3
We are iterating:
xn+1 = xn - (2x3 - 6x2 + 3x + 1)/(6x2 - 12x + 3)
Note that convergence is quadratic. That is, there is a positive constant C such that in the long run, the errors obey |en+1| ≤ Cen2. Thus the number of digits correctly calculated roughly doubles each iteration:
x0 = 2.5000000000000000000
x1 = 2.2857142857142857143
x2 = 2.2288242730720606827
x3 = 2.2247650958354280934
x4 = 2.2247448718925248504
x5 = 2.2247448713915890494
x6 = 2.2247448713915890491
Note that the cubic factors as (x - 1)(2x2 - 4x - 1) and it's three roots are:
x = 1, x = (2 ± √6)/2
I think you can guess which one we computed.