Determine the values of a,b,c, and d, so that the following function s(x) is a cubic spline satisfying $s''(3)=0$.
$s(x)= \Big\{^{x^3-4x^2+7 x \in [-1,1]}_{ax^3+bx^2+cx+d x \in [1,3]}$
To use the Natural/simple boundary conditions I know that it must satisfy:
$S''(x_o)=0$ and $S''(x_n)=0$ This is what I have:
$s_1(x)=x^3-4x^2+7 \rightarrow s_1'(x)=3x^2-8x \rightarrow s_1''(x)=6x-8$
and
$s_2(x)=ax^3+bx^2+cx+d \rightarrow s_2'(x)=3ax^2+2bx+c \rightarrow s_2''(x)=6ax+2b$
Now this step is where i'm stuck, any help would be appreciated. What would the next step be?
edit: With the help of mathcounterexamples.net, I was able to use Gauss-Jordan elimination to get the following values:
$a=\frac{1}{6}, b=\frac{-3}{2}, c= \frac{-5}{2}, d=\frac{47}{6}$