Introduction to Numerical Methods/Integration
Resources:
- notes on Trapezoidal Rule
- notes on Simpson’s 1/3 Rule
- notes on Romberg Rule
- notes on integrating discrete functions
The fundamental theorem of calculus states that differentiation and integration are inverse operations: when a continuous function is first integrated and then differentiated or vice versa, the original function will be obtained. However the integrand may be known only at certain points, such as data measured from an experiment or from sampling, which is common in computer applications. Sometimes even though the formula for an integrand is known, it is difficult or impossible to find the antiderivative in an elementary function form, e.g the antiderivative of , cannot be written in elementary form. Computing a numerical integration (approximation) can be easier than solving the integral symbolically.
Trapezoidal Rule
editThe trapezoidal rule approximates the area under the curve of the function as a trapezoid:
Effectively we are estimating the average function value using two samples.
The trapezoidal rule belongs to a class of formulas called Newton–Cotes formulas (evaluating the integrand at equally spaced points). Another way to look at it is that trapezoidal rule approximates the integrand by a first order polynomial and then integrating the polynomial over interval of integration as illustrated in the figure.
The multiple segment Trapezoidal Rule can be used to improve the accuracy of the approximation by using a sequence of samples:
Lets look at an example that approximate the area of a swimming pool.
Simpson's 1/3 Rule
editSimpson's rule is a numerical integration method that uses the following approximation formula:
The Simpson's rule can be derived by approximating the integrand as a second order polynomial (quadratic) function as shown in the figure:
Another way to look at it is that Simpson’s rule is an extension of Trapezoidal rule where the integrand is approximated by a second order polynomial.
A sample implementation of Simpson's rule is available.
Romberg's Rule
editThe true errors result from the trapezoidal rule is negatively proportional to the number of segments cubed. Richardson extrapolation is a sequence acceleration method for getting a better estimate by refining such errors. A practical application of Richardson extrapolation is Romberg integration.
A geometric example is available.
Integration of Discrete Functions
editThe trapezoidal rule with unequal segments can be used to integrate discrete functions, which are defined by a set of data points. Interpolation methods, such as polynomial interpolation and spline interpolation, can be applied to find the function profile, which can be integrated as a continuous function. In addition linear regression can also be used for the same purpose.
Multi-dimensional Integration
editMonte Carlo method is class of computational methods that uses repeated random sampling to obtain numerical results. To estimate multi-dimensional integrals Monte Carlo method may yield greater accuracy for the same number of function evaluations than repeated integrations using one-dimensional methods.
For example we can estimate the value of as shown in the example.
The path tracing algorithm in computer graphics applies the Monte Carlo method to render 3D scenes. It uses repeated random sampling to achieve more accurate estimation making it one of the most physically accurate 3D graphics rendering methods in existence source.