Monday, November 2, 2015

Use 2nd order Newton`s Interpolating polynomial to estimate f(3.5).x 1 3 5 y 50 138 179

Using Newton's Interpolating Formula we construct the
following
table:


x0=1...y[x0]=50


x1=3...y[x1]=138...y[x0,x1]
= 44


x2=5...y[x2]=179...y[x1,x2] =
20.5...y[x0,x1,x2]=-5.875


P2(x) = y[x0]+ y[x0,x1]*x +
y[x0,x1,x2]*x(x-2)


P2(x) =50 + 44x -
5.875*x*(x-2)


for x = 3.5, P2(x) = 50 +
44*3.5 - 5.875*3.5*1.5 = 173.156


Therefore
for x = 3.5, y is approximately equal to 173.156.

No comments:

Post a Comment

Calculate tan(x-y), if sin x=1/2 and sin y=1/3. 0

We'll write the formula of the tangent of difference of 2 angles. tan (x-y) = (tan x - tan y)/(1 + tan x*tan y) ...