Notes on Lagrange Interpolating Polynomials
eli.thegreenplace.net
Notes on Lagrange Interpolating Polynomials
1–10 of 14 posts
Re: Notes on Lagrange Interpolating Polynomials
#2Re: Notes on Lagrange Interpolating Polynomials
#3Re: Notes on Lagrange Interpolating Polynomials
#4the last matrix before the appendix is not the identity matrix, right now the matrix is: \begin{bmatrix} 1 & 0 & 0 & \dots & 0\\ 1 & 0 & 0 & \dots & 0\\ 1 & 0 & 0 & \dots & 0\\ \vdots & \vdots & \vdots & \ddots &\vdots \\ 1 & 0 & 0 & \dots & 1 \end{bmatrix}
Re: Notes on Lagrange Interpolating Polynomials
#5Re: Notes on Lagrange Interpolating Polynomials
#6In the Polynomial Interpolation Theorem, you have r(x) = p(x) - r(x), but I think it should be q(x) = p(x) - r(x).
(proof-reading through HN is a mildly embarrassing process, sorry about that! I do go over these posts and proof-read them several times myself before publishing)
Re: Notes on Lagrange Interpolating Polynomials
#7Essentially you convert the differential equations into an algebraic system by discretizing the solution. The method is called Orthogonal Collocation on Finite Elements (OCFE), and it was developed by chemical engineers.
The Lagrange polynomials were calculated at special knots that corresponded to Radau interior points, which work great for stiff systems.
It’s great for solving differential algebraic equations through purely sparse matrix operations, no explicit integration like Runge Kutta. (Well, it’s implicit Runge Kutta).
Re: Notes on Lagrange Interpolating Polynomials
#8Re: Notes on Lagrange Interpolating Polynomials
#9My beef with this approach is that it is a little unsatisfying in the sense that it sort of feels like we "got lucky". That is, it highlights this special feature (alternation) while burying the interesting structure that leads to such polynomials being extremal in these problems, as can be seen if you attempt certain seemingly trivial extensions of classical inequalities -- but nevertheless it's an important trick in extremal polynomial theory and approximation more broadly