I have the following question: "Polynomial interpolation doesn't fit function with fast change. Instead of polynomial interpolation, you can develop an exponential interpolation using the basis 1,exp(x),exp(2x),exp(3x),...,exp(nx). To do so, adjust Lagrange interpolation polynomial to interpolation exponential. Write extensively the base "polynomials" li(x)"
Before posting this I really tried looking everywhere for a similar question.
Therefor, I would love some help with that:) Thank you!
In Lagrange interpolation, you construct polynomials $l_i(x),i=1,2,\dots,n$ of degree $n-1$, such that $l_i(x_j)=\begin{cases} 1 & i=j \\ 0 & i \neq j \end{cases}$. You do that by defining $L_i(x)=\prod_{j \neq i} (x-x_j)$, which satisfies the second requirement, and then normalizing by taking $l_i(x)=L_i(x)/L_i(x_i)$.
You can do exactly the same thing with exponentials: an exponential function that only vanishes at $x_j$ is $\exp(x)-\exp(x_j)$, so $E_i(x)=\prod_{i \neq j} \exp(x)-\exp(x_j)$ vanishes exactly at the points $i \neq j$. Now normalize that to get something similar to a Lagrange polynomial.