Suppose that $f(x)$, $f′(x)$, and $f′′(x)$ are easily computed. Derive an algorithm like Newton’s method that uses three terms in the Taylor series. The algorithm should take as input an approximation to the root and produce as output a better approximation to the root. Show that the method is cubically convergent.
So the Taylor series is $$f(x+h)=f(x)+hf'(x)+ 2\cdot \frac{h^2}{f''(x)}+ 6\cdot\frac{h^3}{f'''(x)}+\ldots$$ And I know that if we use the first two terms, Newton's method would be $x_{n+1}=x_n-\frac{f(x)}{f'(x)}$.
So using three terms, what am i supposed to do here and how do i prove cubic convergence? Thanks.