Input: a set of points
Output: polynomial that passes through all points of Input
Here, since the input are just two numbers, I don't think it is polynomial interpolation.
f(x) = x^2 + 11x
f(10) = 110 = 1 * 10^2 + 1 * 10^1 = 0 * 10^2 + 11 * 10^1 f(0) = 0 = 1 * 0^2 + 1 * 0^1 = 1 * 0^2 + 11 * 0^1