Given $n + 1$ samples of a $n+1$ times continuously differentiable function $f \in C^{k + 1}$: \begin{equation} (x_0, f(x_0)), (x_1, f(x_1)), \dots, (x_n, f(x_n)) \end{equation} Lagrange polynomial is a unique polynomial $p(x)$ interpolating these points: \begin{equation} p(x_i) = f(x_i) \end{equation} with the interpolation error $x \in [x_0, x_n]$: \begin{equation} f(x_i) - p(x_i) = \frac{f^{(n + 1)}(\zeta)}{(n+1)!}\pi_{n+1}(x) \end{equation} where $\pi(x) = (x - x_0)\dots(x - x_n)$ and $\zeta \in (a, b)$. The following implies there exists a constant $C$ for which the interpolation error $x \in [x_0, x_n]$: \begin{equation} |p(x_i) - f(x_i)| \leqslant C|x_n - x_0| \end{equation}
My question is whether the same can be said for the extrapolation error $x \in [x_0, x_n + h]$? I usually find the theorems regarding the interpolation error and few statements that extrapolation is really error prone, but without any lower or upper bounds.
Can you, please, point me to a reference dealing with the error of polynomial extrapolation?