Newton’s forward/backward difference:
Newton Forward Difference:
If the x value of a data set are uniformly spaced then let us define for the data set.
This variable is called interpolating variable. i.e. s is linear in ‘x’.
Now the unique nth degree polynomial can also be represented as,
This is Newton’s forward difference polynomial.
You can also represent this forward difference polynomial using binomial coefficient representation
Example:
Find Solution using Newton’s Forward Difference formula(x = 1895)
x | 1891 | 1901 | 1911 | 1921 | 1931 |
y | 46 | 66 | 81 | 93 | 101 |
Solution:
Newton’s forward difference table is
x | y | Δy | Δ2y | Δ3y | Δ4y |
---|---|---|---|---|---|
1891 | 46 | ||||
20 | |||||
1901 | 66 | -5 | |||
15 | 2 | ||||
1911 | 81 | -3 | -3 | ||
12 | -1 | ||||
1921 | 93 | -4 | |||
8 | |||||
1931 | 101 |
Newton’s forward difference interpolation formula is
Newton Backward Difference Polynomial:
As explained for Newton’s forward difference polynomials, we can also use backward difference formulas to develop polynomials.
We can use backward differences
For a uniformly spaced data, if xn is the base in an (n+1) data (x0,f0),(x1,f1),..,(xn,fn)
We have the unique nth degree polynomial in the power series as:
Example:
Find Solution using Newton’s Backward Difference formula(x = 1925)
x | 1891 | 1901 | 1911 | 1921 | 1931 |
y | 46 | 66 | 81 | 93 | 101 |
Solution:
Newton’s backward difference table is
x | y | Δy | Δ2y | Δ3y | Δ4y |
---|---|---|---|---|---|
1891 | 46 | ||||
20 | |||||
1901 | 66 | -5 | |||
15 | 2 | ||||
1911 | 81 | -3 | -3 | ||
12 | -1 | ||||
1921 | 93 | -4 | |||
8 | |||||
1931 | 101 |
Newton’s backward difference interpolation formula is