chaos world

Polynomial Interpolattion through n points(2 dimensions)

Think about a series of different points in XOY plane, assume $(a_1,b_1),(a_2,b_2),…,(a_n,b_n)$, is there a curve go through all these points? How many curves can satisfy?

On this problem, we can assume there exist a solution as below:

Then replace $x$ with $a_i$ and $f(x)$ with $b_i$, we can get a group of equations like this:

In order to solve $c_0,c_1,…,c_{n-1}$ from the equations group, we should first extract the coefficient matrix from it as following:

If you transpose it, you can get the Vandermonde matrix:

its determinant is equal to

So the determinant is not equal to $0$ while the $a_i$ is different from each other. Now we can derive a conclusion that there is one and only one solution $[ c_0,c_1,cdots,c_{n-1}]$ for the equations group from the determinant.

There is only one $n-1$ times polynomial function can satisfy interpolation of $n$ diffirent points on $2$ dimension plane.