📖 WIPIVERSE

🔍 Currently registered entries: 53,491건

Weddle

Weddle's Rule is a numerical integration technique used to approximate the definite integral of a function. It is a higher-order Newton-Cotes formula, derived by interpolating the integrand with a polynomial of degree six. Consequently, it requires seven equally spaced points within the interval of integration.

The general form of Weddle's Rule for approximating the integral of a function f(x) from a to b, with n subintervals (where n is a multiple of 6), is given by:

ab f(x) dx ≈ (3h/10) [ f(x0) + 5f(x1) + f(x2) + 6f(x3) + f(x4) + 5f(x5) + f(x6) ] + (3h/10) [ f(x6) + 5f(x7) + f(x8) + 6f(x9) + f(x10) + 5f(x11) + f(x12) ] + ...

where:

  • h = (b - a) / n (the width of each subinterval)
  • xi = a + i*h (the points at which the function is evaluated)

Weddle's Rule is generally more accurate than Simpson's Rule or the Trapezoidal Rule for smooth functions, due to its higher order of precision. However, it also requires more function evaluations. It's particularly effective when the function is well-approximated by a sixth-degree polynomial.

The rule's derivation stems from integrating the sixth-degree Lagrange interpolating polynomial through the given points. The coefficients in the formula (3/10, 15/10, 3/10, 18/10, 3/10, 15/10, 3/10) are obtained by performing this integration. Note that the rule is applied repeatedly over consecutive intervals of width 6h.