Find the natural cubic spline function St at the points t0
Solution
(2) Since it is a cubic spline function, So let S(t) = a+b(t)+c(t)2+d(t)3 - eq(1)
Now at t0=0, we have S(t0)=0, put this value in eq(1), we have the equation,
0= a+b(0)+c(0)2+d(0)3 , that is a=o
Now at t1=1, we have S(t1) = 2, putting this value in eq(1), we get
0+b+c+d = 2, that is b+c+d =2 ---eq(2),
At t2 = 2, we have S(t2) = 1, putting this value in eq(1), we get
0+2b+4c+8d = 1, that is 2b+4c+8d =1 -----eq(3),
Multiplying eq(2) with 2 and subtracting with eq (3), we get
2c+3d =-3 ------eq(4),
Now at t3 =3, we have S(t3) = 0, putting this value in eq (1), we get
3b+9c+27d = 0, that is b+3c+9d = 0 -------eq(5),
Now put the value of eq(4) in eq(5), we have
b+2c+6d+c+3d = 0, b-3+c+3d =0, b+c+3d = 3 -------eq(6),
Now subtract eq(2) from eq(6), we get
2d = 1, d = 1/2,
Putting the value of d in eq(4), we have
2c+6d = -3, 2c +6*(1/2) = -3, that is c = -3,
Now the put the value of a, c, d in eq (2),
a+b+c+d = 2, 0+b+(-3)+(1/2) = 2, that is b = 9/2,
Now put all the values in eq(1), we have the equation,
S(t) = (9/2)t - 3t2 +(1/2)t3 this is the required cubic spline functions,

