Newton's Divided Difference Method:
In this, the nth order polynomial is taken as
y = a0 + a1 (x - x0) + a2 (x - x0) (x - x1) + . . . + an (x - x0) (x - x1) . . . (x - xn - 1) A recursive formula is written down to find out the coefficients. The higher order coefficients are found out from the lower order ones. The coefficients are appraise beginning with a1, a2 and a3 and so on up to an.
The general form of the nth order Newton's polynomial might be written like
y = c0 + c1 (x - x0) + c2 (x - x0) (x - x1) + . . . + cn (x - x0) (x - x1) . . . (x - xn - 1)
To determine the (n + 1) coefficients, we require n + 1 data points such as (x0, y0),
(x1, y1) . . . ( xn, yn).
The coefficients are specified by
c0 = y0
:
:
cn = f ( xn , xn -1, . . . , x1, x0 )