I have these data points.
$f_i(x)= \{10, 11, 14\}$
$x_i= \{0, 1, 3\}$
then the basis functions are.
$\pi_0 = 1 \\\pi_1=(x-x_0)=x \\\pi_2=(x-x_0)(x-x_1) =x(x-1)$
So the matrix will become.
$\begin{bmatrix} 1 & & & 10\\ 1& 1 & & 11\\ 1& 3 & 6 & 14 \end{bmatrix}$
When solved I get $10+x+\frac{1}{6}x^2$. Which does not give me the any of the answers in a multiple choice question for $x=2$.