Newton Interpolation polynomial:
www.nptel.ac.in › content › storage2Let us assume that these are interpolating points of Newton form of interpolating polynomial of degree i.e. (1) The Newton form of the interpolating polynomial is given by. (2) For i=0, from (1) & (2) we get. (3.1) For , from (1) & (2) we get. (3.2) For i=2, from (1) & (2) we get Using (3.1) & (3.2), we get.
Chapter 3 - Interpolation
www.cs.usask.ca › ~spiteri › M211Example Interpolate the points ( 2; 27), (0; 1), (1;0) using Newton interpolation. Let P 3(x) = c 1 +c 2(x x 1)+c 3(x x 1)(x x 2): Then, 27 = c1; 1 = c1 + c2(0 + 2) =)c2 = 26 2 = 13; 0 = c1 + c2(1 + 2) + c3(1 + 2)(1 0) =)c3 = 27 13(3) 3 = 4: Thus, P 3(x) = 27+13(x+2) 4(x+2)(x): 10