Home > Numerical methods > Numerical Interpolation > Gauss Backward interpolation formula example

7. Gauss Backward Interpolation formula example ( Enter your problem )
  1. Formula & Example-1 (table data)
  2. Example-2 (table data)
  3. Example-3 (table data)

2. Example-2 (table data)





2. Find Solution using Gauss Backward formula
xf(x)
193112
194115
195120
196127
197139
198152

x = 1966


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

x193119411951196119711981
y121520273952

Gauss's backward difference interpolation method to find solution

`h=1941-1931=10`

Taking `x_0=1961` then `p=(x-x_0)/h=(x-1961)/10`

Now the central difference table is
`x``p=(x-1961)/10``y``Deltay``Delta^2y``Delta^3y``Delta^4y``Delta^5y`
1931-312
3
1941-2152
50
1951-12023
73-10
19610275-7
12-4
19711391
13
1981252


`x = 1966`

`p = (x - x_0)/h = (1966 - 1961)/10 = 0.5`

`y_0=27, Delta y_(-1)=7,Delta^2y_(-1)=5,Delta^3y_(-2)=3,Delta^4y_(-2)=-7,Delta^5y_(-3)=-10`

Gauss's backward interpolation formula is
`y_p=y_0+p Delta y_(-1) + ((p + 1)p)/(2!) * Delta^2y_(-1) + ((p + 1)p(p - 1))/(3!) * Delta^3y_(-2) + ((p + 2)(p + 1)p(p - 1))/(4!) * Delta^4y_(-2) + ((p + 2)(p + 1)p(p - 1)(p - 2))/(5!) * Delta^5y_(-3)`

`y_(0.5) = 27 + (0.5)(7) + ((0.5 + 1)(0.5))/(2) * (5) + ((0.5 + 1)(0.5)(0.5 - 1))/(6) * (3) + ((0.5 + 2)(0.5 + 1)(0.5)(0.5 - 1))/(24) * (-7) + ((0.5 + 2)(0.5 + 1)(0.5)(0.5 - 1)(0.5 - 2))/(120) * (-10)`

`y_(0.5)=27 +3.5 +1.875 -0.1875 +0.2734375 -0.1171875`

`y_(0.5)=32.34375`


Solution of Gauss's backward interpolation is `y(1966) = 32.34375`




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
 
 

.