Newton-Raphson Method

Let us consider the solution of [Maple Math] . Assume [Maple Math] is a solution of this equation with [Maple Math] . Create a fixed-point iteration sequence, [Maple Math] with [Maple Math] and [Maple Math] . [Maple Math] is a function we can choose at will. Clearly, when [Maple Math] is bounded near [Maple Math] , then [Maple Math] . So for the iterative process to converge quadratically, we require that [Maple Math] . This means

> g:=x->x-phi(x)*f(x);

[Maple Math]

> D(g);

[Maple Math]

so that

> D(g)(p);

[Maple Math]

> eq:=subs(f(p)=0,D(g)(p)=0);

[Maple Math]

> solve(eq,phi(p));

[Maple Math]

This lead to the iterative scheme

> p[n+1]=p[n]-f(p[n])/(D(f)(p[n]));

[Maple Math]

which we should recognise as the Newton-Raphson Method. This is yet an alternative way to derive the Newton-Raphson formula and shows that it is a quadratic method by construction.