Say you're performing Lagrange Interpolation on a function $P(x)$ and you've found that
$$ P(x) = \sum_{i = 1}^{11} \Delta_i(x) $$
given the eleven points $(1, P(1)), (2, P(2)), ..., (11, P(11))$. Remember that
$$ \Delta_i(x) = \frac{\prod_{i \neq j} (x - x_j)}{\prod_{i \neq j} (x_i - x_j)} $$
What is $P(20)$?