MASS (version 7.3-33)

area: Adaptive Numerical Integration

Description

Integrate a function of one variable over a finite range using a recursive adaptive method. This function is mainly for demonstration purposes.

Usage

area(f, a, b, ..., fa = f(a, ...), fb = f(b, ...),
     limit = 10, eps = 1e-05)

Arguments

f
The integrand as an S function object. The variable of integration must be the first argument.
a
Lower limit of integration.
b
Upper limit of integration.
...
Additional arguments needed by the integrand.
fa
Function value at the lower limit.
fb
Function value at the upper limit.
limit
Limit on the depth to which recursion is allowed to go.
eps
Error tolerance to control the process.

Value

  • The integral from a to b of f(x).

Details

The method divides the interval in two and compares the values given by Simpson's rule and the trapezium rule. If these are within eps of each other the Simpson's rule result is given, otherwise the process is applied separately to each half of the interval and the results added together.

References

Venables, W. N. and Ripley, B. D. (1994) Modern Applied Statistics with S-Plus. Springer. pp. 105--110.

Examples

Run this code
area(sin, 0, pi)  # integrate the sin function from 0 to pi.

Run the code above in your browser using DataCamp Workspace