Polynomial interpolation

Quadratic polynomial

P(x) = ax2 + bx + c

Using Horner's method

P(x) = (ax+ b)x + c

Quadratic polynomial from 3 points

P(x) = ax2 + bx + c

This is the Vandermonde matrix.