Question
Question: Using Newton's backward difference formula find the value of y at x=3.5 for following data: | x | 0...
Using Newton's backward difference formula find the value of y at x=3.5 for following data:
x | 0 | 1 | 2 | 3 | 4 |
---|---|---|---|---|---|
y | 3 | 2 | 3 | 6 | 11 |

8.25
Solution
The given data is:
x | 0 | 1 | 2 | 3 | 4 |
---|---|---|---|---|---|
y | 3 | 2 | 3 | 6 | 11 |
We need to find the value of y at x = 3.5 using Newton's backward difference formula. The points are equally spaced with interval h=1.
Newton's backward difference formula is given by:
y(x)=yn+p∇yn+2!p(p+1)∇2yn+3!p(p+1)(p+2)∇3yn+…
where x=xn+ph.
We choose the last point as the reference point, so xn=4 and yn=y4=11. The value of x at which we want to find y is 3.5. h=1
Calculate p:
p=hx−xn=13.5−4=−0.5
Construct the backward difference table:
x | y | ∇y | ∇2y | ∇3y | ∇4y |
---|---|---|---|---|---|
0 | 3 | ||||
1 | 2 | 2 - 3 = -1 | |||
2 | 3 | 3 - 2 = 1 | 1 - (-1) = 2 | ||
3 | 6 | 6 - 3 = 3 | 3 - 1 = 2 | 2 - 2 = 0 | |
4 | 11 | 11 - 6 = 5 | 5 - 3 = 2 | 2 - 2 = 0 | 0 - 0 = 0 |
The backward differences at xn=x4=4 are the last values in each column:
y4=11 ∇y4=5 ∇2y4=2 ∇3y4=0 ∇4y4=0
Since the third and fourth differences are zero, the polynomial is of degree 2, and the formula truncates after the second difference term.
Substitute the values of y4, p, ∇y4, and ∇2y4 into Newton's backward difference formula:
y(3.5)=y4+p∇y4+2!p(p+1)∇2y4+… y(3.5)=11+(−0.5)(5)+2(−0.5)(−0.5+1)(2) y(3.5)=11−2.5+2(−0.5)(0.5)(2) y(3.5)=11−2.5+2−0.25(2) y(3.5)=11−2.5−0.25 y(3.5)=8.5−0.25 y(3.5)=8.25
Thus, the value of y at x = 3.5 is 8.25.