[Math] Interpolation- Barycentric coefficients for nodes that are Chebyshev points of the second kind.

interpolationnumerical methodspolynomials

So I came across the following theorem:

If the interpolation node are Chebyshev points of the second kind given by :
$$ x_k=\cos \left( \frac{j\pi}{n}\right) \qquad ( 0 \leq j \leq n) $$

Then the barycetric coefficients are :

$\beta_j=(-1)^j\theta_j $

Where $\theta_j=\frac{1}{2}$ when $j=0$ or $j=n$ and $\theta_j=1$ in other cases.

But how come? I can't seem to come across the proof of this, and I can't seem to get this coefficients by calculating $\beta_i=1/\prod\limits_{j=0,j\neq i}^{j=n} \left( \cos \left( \frac{i\pi}{n}\right) – \cos \left( \frac{j\pi}{n}\right)\right)$

Best Answer

The formula for $\beta_i$ is $(X - x_i)/P_n(X) = 1/P_n'(x)$ where $P_n$ is the monic polynomial with roots $x_i = \cos \frac{i\pi}{n}$. The polynomial is $P_n(x) = (1 + \cos (n \arccos x))/2^n$, which can be differentiated and the derivative evaluated at interpolation points.

Related Question