I don't fully understand this question about cubic spline interpolation

Firepanda
Messages
425
Reaction score
0
8wck6e.png


If each spline is given in the form of

gi(x) = ai(x-xi)3 + bi(x-xi)2 + ci(x-xi) + di

where i = 1 to N for N+1 data points.

Then given that b1 and bN+1 are zero (because the second derivatives are zero at the endpoints, due to this being a natural cubic spline), then there are N-1 equations for b2...bN.

Since we then use the value of bi to work out the unknowns ai, ci and di then there are four equations per i. Then since bi and bN+1 are zero, we can work out ai, ci and di on the last splines (3 each).

So is the answer 4(N-1) +6?

I don't understand what it means by 'Show there are enough equations..', any ideas?

Thanks
 
Physics news on Phys.org
Hi Firepanda! :smile:

If you have N+1 datapoints, that means you have N cubic splines.
Each spline has 4 unknown parameters for a total of 4N parameters.
To solve all parameters you need as many equations as parameters.

So you need exactly 4N equations...
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top