Dictionary
Thesaurus
Reference
Translate
Web
Lagrange polynomial
1 reference results for: Lagrange interpolation
Wikipedia
In numerical analysis, a Lagrange polynomial, named after Joseph Louis Lagrange, is the interpolation polynomial for a given set of data points in the Lagrange form. It was first discovered by Edward Waring in 1779 and later rediscovered by Leonhard Euler in 1783.

As there is only one interpolation polynomial for a given set of data points it is a bit misleading to call the polynomial the Lagrange interpolation polynomial. The more precise name is interpolation polynomial in the Lagrange form.

Definition

Given a set of k + 1 data points

(x_0, y_0),ldots,(x_k, y_k)

where no two xj are the same, the interpolation polynomial in the Lagrange form is a linear combination

L(x) := sum_{j=0}^{k} y_j ell_j(x)

of Lagrange basis polynomials

ell_j(x) := prod_{i=0,, ineq j}^{k} frac{x-x_i}{x_j-x_i} = frac{(x-x_0)}{(x_j-x_0)} cdots frac{(x-x_{j-1})}{(x_j-x_{j-1})} frac{(x-x_{j+1})}{(x_j-x_{j+1})} cdots frac{(x-x_{k})}{(x_j-x_{k})}.

Proof

The function we are looking for has to be a polynomial function L(x) of degree less than or equal to k with

L(x_j) = y_j qquad j=0,ldots,k

The Lagrange polynomial is a solution to the interpolation problem.

As can be seen

  1. ell_j(x) is a polynomial and has degree k.
  2. ell_i(x_j) = delta_{ij},quad 0 leq i,j leq k.,

Thus the function L(x) is a polynomial with degree at most k and

L(x_i) = sum_{j=0}^{k} y_j ell_j(x_i) = y_i.

There can be only one solution to the interpolation problem since the difference of two such solutions would be a polynomial with degree at most k and k+1 zeros. This is only possible if the difference is identically zero, so L(x) is the unique polynomial interpolating the given data.

Main idea

Solving an interpolation problem leads to a problem in linear algebra where we have to solve a matrix. Using a standard monomial basis for our interpolation polynomial we get the very complicated Vandermonde matrix. By choosing another basis, the Lagrange basis, we get the much simpler identity matrix = δi,j which we can solve instantly.

Implementation in C

Note : "pos" and "val" arrays are of size "degree".

float lagrangeInterpolatingPolynomial (float pos[], float val[], int degree, float desiredPos) {

  float weight;
  float retVal = 0;

  for (int i=0; i <= degree; i++) {
     weight = 1;

     for (int j=0; j
        weight *= (desiredPos - pos[j]) / (pos[i] - pos[j]);
}

     for(int j=i+1; j<=degree; j++) {
        weight *= (desiredPos - pos[j]) / (pos[i] - pos[j]);
}

     retVal += weight * val[i];
}

  return retVal;
}

Usage

Example 1

We wish to interpolate f(x)=tan(x) at the points

x_0=-1.5, f(x_0)=-14.1014,
x_1=-0.75, f(x_1)=-0.931596,
x_2=0, f(x_2)=0,
x_3=0.75, f(x_3)=0.931596,
x_4=1.5, f(x_4)=14.1014,

The basis polynomials are:

ell_0(x)={x - x_1 over x_0 - x_1}cdot{x - x_2 over x_0 - x_2}cdot{x - x_3 over x_0 - x_3}cdot{x - x_4 over x_0 - x_4}
={1over 243} x (2x-3)(4x-3)(4x+3)

ell_1(x)={x - x_0 over x_1 - x_0}cdot{x - x_2 over x_1 - x_2}cdot{x - x_3 over x_1 - x_3}cdot{x - x_4 over x_1 - x_4}
=-{8over 243} x (2x-3)(2x+3)(4x-3)

ell_2(x)={x - x_0 over x_2 - x_0}cdot{x - x_1 over x_2 - x_1}cdot{x - x_3 over x_2 - x_3}cdot{x - x_4 over x_2 - x_4}
={3over 243} (2x+3)(4x+3)(4x-3)(2x-3)

ell_3(x)={x - x_0 over x_3 - x_0}cdot{x - x_1 over x_3 - x_1}cdot{x - x_2 over x_3 - x_2}cdot{x - x_4 over x_3 - x_4}
=-{8over 243} x (2x-3)(2x+3)(4x+3)

ell_4(x)={x - x_0 over x_4 - x_0}cdot{x - x_1 over x_4 - x_1}cdot{x - x_2 over x_4 - x_2}cdot{x - x_3 over x_4 - x_3}
={1over 243} x (2x+3)(4x-3)(4x+3)

Thus the interpolating polynomial then is

begin{align}L(x) &= {1over 243}Big(f(x_0)x (2x-3)(4x-3)(4x+3)
&-8f(x_1)x (2x-3)(2x+3)(4x-3) &+3f(x_2)(2x+3)(4x+3)(4x-3)(2x-3) &-8f(x_3)x (2x-3)(2x+3)(4x+3) &+f(x_4)x (2x+3)(4x-3)(4x+3)Big)

&= 4.834848x^3 - 1.477474x. end{align}

Example 2

We wish to interpolate f(x)= x^2 over the range 1 leq x leq 3:
x_0=1, f(x_0)=1,
x_1=2, f(x_1)=4,
x_2=3, f(x_2)=9,

The interpolating polynomial is:

begin{align}
L(x) &= {1}cdot{x - 2 over 1 - 2}cdot{x - 3 over 1 - 3}+{4}cdot{x - 1 over 2 - 1}cdot{x - 3 over 2 - 3}+{9}cdot{x - 1 over 3 - 1}cdot{x - 2 over 3 - 2} &= x^2. end{align}

Example 3

We wish to interpolate f(x)= x^3 over the range 1 leq x leq 3:
x_0=1, f(x_0)=1,
x_1=2, f(x_1)=8,
x_2=3, f(x_2)=27,

The interpolating polynomial is:

begin{align}
L(x) &= {1}cdot{x - 2 over 1 - 2}cdot{x - 3 over 1 - 3}+{8}cdot{x - 1 over 2 - 1}cdot{x - 3 over 2 - 3}+{27}cdot{x - 1 over 3 - 1}cdot{x - 2 over 3 - 2} &= 6x^2 - 11x + 6. end{align}

Notes

The Lagrange form of the interpolation polynomial shows the linear character of polynomial interpolation and the uniqueness of the interpolation polynomial. Therefore, it is preferred in proofs and theoretical arguments. But, as can be seen from the construction, each time a node xk changes, all Lagrange basis polynomials have to be recalculated. A better form of the interpolation polynomial for practical (or computational) purposes is the the barycentric form of the Lagrange interpolation (see below) or Newton polynomials.

Lagrange and other interpolation at equally spaced points, as in the example above, yield a polynomial oscillating above and below the true function. This behaviour is known as the Gibbs phenomenon and can be lessened by choosing interpolation points at Chebyshev nodes.

The Lagrange basis polynomials can be used in numerical integration to derive the Newton–Cotes formulas.

Barycentric Interpolation

Using the quantity
ell(x) = (x - x_0)(x - x_1) dots (x - x_k)
we can re-write the Lagrange basis polynomials as
ell_j(x) = frac{ell(x)}{x-x_j} frac{1}{prod_{i=0,i neq j}^k(x_j-x_i)}
or, by defining the barycentric weights
w_j = frac{1}{prod_{i=0,i neq j}^k(x_j-x_i)}
we can simply write
ell_j(x) = ell(x)frac{w_j}{x-x_j}
which is commonly referred to as the first form of the barycentric interpolation formula.

The advantage of this representation is that the interpolation polynomial may now be evaluated as

L(x) = ell(x) sum_{j=0}^k frac{w_j}{x-x_j}f_j
which, if the weights w_j have been pre-computed, requires only mathcal O(n) operations (evaluating ell(x) and the weights w_j/(x-x_j)) as opposed to mathcal O(n^2) for evaluating the Lagrange basis polynomials ell_j(x) individually.

The barycentric interpolation formula can also easily be updated to incorporate a new node x_{k+1} by dividing each of the w_j, j=0 dots k by (x_j - x_{k+1}) and constructing the new w_{k+1} as above.

We can further simplify the first form by first considering the barycentric interpolation of the constant function g(x)equiv 1:

g(x) = ell(x) sum_{j=0}^k frac{w_j}{x-x_j}.
Dividing L(x) by g(x) does not modify the interpolation, yet yields
L(x) = frac{sum_{j=0}^k frac{w_j}{x-x_j}f_j}{sum_{j=0}^k frac{w_j}{x-x_j}}
which is referred to as the second form or true form of the barycentric interpolation formula. This second form has the advantage, that ell(x) need not be evaluated for each evaluation of L(x).

See also

External links

References

Share This:Share This: digg.comShare This: ma.gnolia.comShare This: www.stumbleupon.comShare This: del.icio.usShare This: FacebookShare This: favorites.live.comShare This: www.technorati.comShare This: furl.netShare This: myweb2.search.yahoo.comShare This: www.google.com