[Math] difference between newton interpolation and lagrange interpolation

interpolationlagrange-interpolation

I know that they both represent same polynomial and their formulas, but what is difference between them. If they are not different, then why do we study them separately?

Don't need detailed proof but general idea – 'what is going on?'

Best Answer

What is great with Newton's interpolation is the fact that if you add new points you don't have to re-calculate all the coefficients (see forward divided difference formula) which can be really useful ! You'll have more details at the end of this article : https://en.wikipedia.org/wiki/Newton_polynomial

Related Question