Simple polynomial interpolation in two dimensions is not always possible. For example, suppose that the following data are to be represented by a polynomial of first degree in $x$ and $y$, $p(t)=a+bx+cy$, where $t=(x,y):$
Data: $f(1,1) = 3, f(3,2)=2, f(5,3)=6$
Show that it is not possible.
I've been trying to think of ways to use either Newton's Form or Divided Differences to prove this is not possible, but can't come up with how to work it out. Looking for any help :)
Since you want a polynomial of degree $\leqslant 1$, you have the three equations
$$\begin{align} a + b + c &= 3\tag{1}\\ a + 3b + 2c &= 2\tag{2}\\ a + 5b + 3c &= 6\tag{3} \end{align}$$
Subtracting $(1)$ from $(2)$ yields $2b + c = -1$, and subtracting $(2)$ from $(3)$ yields $2b + c = 4$. These are incompatible.