Newton–Cotes formulas


In numerical analysis, the Newton–Cotes formulas, also called the Newton–Cotes quadrature rules or simply Newton–Cotes rules, are a group of formulas for numerical integration based on evaluating the integrand at equally spaced points. They are named after Isaac Newton and Roger Cotes.
Newton–Cotes formulas can be useful if the value of the integrand at equally spaced points is given. If it is possible to change the points at which the integrand is evaluated, then other methods such as Gaussian quadrature and Clenshaw–Curtis quadrature are probably more suitable.

Description

It is assumed that the value of a function f defined on is known at equally spaced points xi, for i = 0,..., n, where x0 = a and xn = b. There are two types of Newton–Cotes formulas, the "closed" type which uses the function value at all points, and the "open" type which does not use the function values at the endpoints. The closed Newton–Cotes formula of degree n is stated as
where, with h equal to. The wi are called weights.
As can be seen in the following derivation the weights are derived from the Lagrange basis polynomials. They depend only on the xi and not on the function f. Let L be the interpolation polynomial in the Lagrange form for the given data points, then
The open Newton–Cotes formula of degree n is stated as
The weights are found in a manner similar to the closed formula.

Instability for high degree

A Newton–Cotes formula of any degree n can be constructed. However, for large n a Newton–Cotes rule can sometimes suffer from catastrophic Runge's phenomenon where the error grows exponentially for large n. Methods such as Gaussian quadrature and Clenshaw–Curtis quadrature with unequally spaced points are stable and much more accurate, and are normally preferred to Newton–Cotes. If these methods cannot be used, because the integrand is only given at the fixed equidistributed grid, then Runge's phenomenon can be avoided by using a composite rule, as explained below.
Alternatively, stable Newton–Cotes formulas can be constructed using least-squares approximation instead of interpolation. This allows building numerically stable formulas even for high degrees.

Closed Newton–Cotes formulas

This table lists some of the Newton–Cotes formulas of the closed type. For with the degree, let and the notation be a shorthand for.
Degree Step size Common nameFormulaError term
1Trapezoid rule
2Simpson's rule
3Simpson's 3/8 rule
4Boole's rule

Boole's rule is sometimes mistakenly called Bode's rule, as a result of the propagation of a typographical error in Abramowitz and Stegun, an early reference book.
The exponent of the segment size ba in the error term shows the rate at which the approximation error decreases. The degree of the derivative of f in the error term gives the degree up to which polynomials can be integrated exactly with this rule. Note that the derivative of f in the error term increases by 2 for every other rule. The number must be taken from the interval.

Open Newton–Cotes formulas

This table lists some of the Newton–Cotes formulas of the open type. Again, is a shorthand for, with, and the degree.
Degree Step size Common nameFormulaError term
2Rectangle rule, or
midpoint rule
3Trapezoid method
4Milne's rule
5

Composite rules

For the Newton–Cotes rules to be accurate, the step size h needs to be small, which means that the interval of integration must be small itself, which is not true most of the time. For this reason, one usually performs numerical integration by splitting into smaller subintervals, applying a Newton–Cotes rule on each subinterval, and adding up the results. This is called a composite rule. See Numerical integration.