Question
Question: Using Newton's backward difference formula, find y at x = 3.5 from following data:...
Using Newton's backward difference formula, find y at x = 3.5 from following data:

13.240625
Solution
The given data points are:
x | 0 | 1 | 2 | 3 | 4 | 5 |
---|---|---|---|---|---|---|
y | 5.2 | 8 | 10.4 | 12.4 | 14 | 15.2 |
We need to find y at x = 3.5 using Newton's backward difference formula. The points are equally spaced with interval h=1. Since we are interpolating near the end of the table (x=3.5 is closer to x=5 than x=0), Newton's backward difference formula is suitable. The formula is:
y(x)=yn+p∇yn+2!p(p+1)∇2yn+3!p(p+1)(p+2)∇3yn+…
where x=xn+ph.
We take the last point as the reference point, so xn=5 and yn=y5=15.2. We need to find y at x=3.5.
p=hx−xn=13.5−5=−1.5
Now, we construct the backward difference table:
x | y | ∇y | ∇2y | ∇3y | ∇4y | ∇5y |
---|---|---|---|---|---|---|
0 | 5.2 | |||||
1 | 8.0 | 2.8 | ||||
2 | 10.4 | 2.4 | -0.4 | |||
3 | 12.4 | 2.0 | -0.4 | 0 | ||
4 | 14.0 | 1.6 | -0.4 | 0.4 | ||
5 | 15.2 | 1.2 | -0.4 | 0 | -0.4 |
The backward differences at xn=x5=5 are the last values in each column:
y5=15.2 ∇y5=1.2 ∇2y5=−0.4 ∇3y5=0 ∇4y5=−0.4 ∇5y5=0
Substitute these values and p=−1.5 into Newton's backward difference formula:
y(3.5)=y5+p∇y5+2!p(p+1)∇2y5+3!p(p+1)(p+2)∇3y5+4!p(p+1)(p+2)(p+3)∇4y5+…
y(3.5)=15.2+(−1.5)(1.2)+2(−1.5)(−1.5+1)(−0.4)+6(−1.5)(−1.5+1)(−1.5+2)(0)+24(−1.5)(−1.5+1)(−1.5+2)(−1.5+3)(−0.4)+…
y(3.5)=15.2+(−1.5)(1.2)+2(−1.5)(−0.5)(−0.4)+0+24(−1.5)(−0.5)(0.5)(1.5)(−0.4)+…
y(3.5)=15.2−1.8+20.75(−0.4)+240.5625(−0.4)+…
y(3.5)=15.2−1.8+0.375(−0.4)+0.0234375(−0.4)+…
y(3.5)=15.2−1.8−0.15−0.009375+…
y(3.5)=13.4−0.15−0.009375
y(3.5)=13.25−0.009375
y(3.5)=13.240625