Home > Numerical methods > Numerical Interpolation > Newton's Backward Difference interpolation formula example

2. Newton's Backward Difference Interpolation formula example ( Enter your problem )
  1. Formula & Example-1 (table data)
  2. Example-2 (table data)
  3. Example-3 (`f(x)=x^3-x+1`)
  4. Example-4 (`f(x)=2x^3-4x+1`)

1. Formula & Example-1 (table data)





Formula
Newton's Backward Difference formula
`p = (x - x_n) / h`
`y(x) = y_n + p grad y_n + (p(p + 1))/(2!) * grad^2y_n + (p(p + 1)(p + 2))/(3!) * grad^3y_n + (p(p + 1)(p + 2)(p + 3))/(4!) * grad^4y_n + ...`

Examples
1. Find Solution using Newton's Backward Difference formula
xf(x)
189146
190166
191181
192193
1931101

x = 1925


Solution:
The value of table for `x` and `y`

x18911901191119211931
y46668193101

Newton's backward difference interpolation method to find solution

Newton's backward difference table is
xy`grady``grad^2y``grad^3y``grad^4y`
1891`46`
`20`
1901`66``-5`
`15``2`
1911`81``-3``-3`
`12``-1`
1921`93``-4`
`8`
1931`101`


The value of x at you want to find the `f(x) : x = 1925`

`h = x_1 - x_0 = 1901 - 1891 = 10`

`p = (x - x_n) / h = (1925 - 1931) / 10 = -0.6`

Newton's backward difference interpolation formula is
`y(x) = y_n + p grad y_n + (p(p + 1))/(2!) * grad^2y_n + (p(p + 1)(p + 2))/(3!) * grad^3y_n + (p(p + 1)(p + 2)(p + 3))/(4!) * grad^4y_n`

`y(1925) = 101 + (-0.6) xx 8 + (-0.6 (-0.6 + 1))/(2) xx -4 + (-0.6 (-0.6 + 1)(-0.6 + 2))/(6) xx -1 + (-0.6 (-0.6 + 1)(-0.6 + 2)(-0.6 + 3))/(24) xx -3`

`y(1925) = 101 -4.8 +0.48 +0.056 +0.1008`

`y(1925) = 96.8368`


Solution of newton's backward interpolation method `y(1925) = 96.8368`




This material is intended as a summary. Use your textbook for detail explanation.
Any bug, improvement, feedback then Submit Here





Share this solution or page with your friends.
 
 
Copyright © 2026. All rights reserved. Terms, Privacy
 
 

.