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

3. Newton's Divided 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 Divided Difference Interpolation formula
`y(x) = y_0 + (x - x_0) f[x_0, x_1] + (x - x_0)(x - x_1) f[x_0, x_1, x_2] + ...`

Examples
1. Find Solution using Newton's Divided Difference Interpolation formula
xf(x)
3002.4771
3042.4829
3052.4843
3072.4871

x = 301


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

x300304305307
y2.47712.48292.48432.4871

Numerical divided differences method to find solution

Newton's divided difference table is
xy`1^(st)` order`2^(nd)` order
3002.4771
`(2.4829-2.4771)/(304-300)=0.0014`
3042.4829`(0.0014-0.0014)/(305-300)=0`
`(2.4843-2.4829)/(305-304)=0.0014`
3052.4843`(0.0014-0.0014)/(307-304)=0`
`(2.4871-2.4843)/(307-305)=0.0014`
3072.4871


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

Newton's divided difference interpolation formula is
`f(x)=y_0 +(x-x_0) f[x_0, x_1]+(x-x_0)(x-x_1) f[x_0, x_1, x_2]`

`y(301) = 2.4771 + (301 -300) xx 0.0014 + (301 -300)(301 -304) xx 0`

`y(301) = 2.4771 + (1) xx 0.0014 + (1)(-3) xx 0`

`y(301) = 2.4771 +0.0014 +0`

`y(301) = 2.4785`


Solution of divided difference interpolation method `y(301) = 2.4785`




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
 
 

.