Simpson's Rule - Maple Help

Online Help

All Products    Maple    MapleSim


Simpson's Rule

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

ApproximateInt(f(x), x = a..b, method = simpson, opts)

ApproximateInt(f(x), a..b, method = simpson, opts)

ApproximateInt(Int(f(x), x = a..b), method = simpson, opts)

Parameters

f(x)

-

algebraic expression in variable 'x'

x

-

name; specify the independent variable

a, b

-

algebraic expressions; specify the interval

opts

-

equation(s) of the form option=value where option is one of boxoptions, functionoptions, iterations, method, outline, output, partition, pointoptions, refinement, showarea, showfunction, showpoints, subpartition, view, or Student plot options; specify output options

Description

• 

The ApproximateInt(f(x), x = a..b, method = simpson, opts) command approximates the integral of f(x) from a to b by using Simpson's rule. The first two arguments (function expression and range) can be replaced by a definite integral.

• 

If the independent variable can be uniquely determined from the expression, the parameter x need not be included in the calling sequence.

• 

Given a partition P=a=x0,x1,...,xN=b of the interval a,b, Simpson's rule approximates the integral on each subinterval xi1,xi by integrating the quadratic function that interpolates the three points xi1,fxi1, xi12+xi2,fxi12+xi2, and xi,fxi.  This value is

xixi1fxi1+4fxi12+xi2+fxi6

• 

In the case that the widths of the subintervals are equal, the approximation can be written as

bafx0+4fx02+x12+2fx1+4fx12+x22+2fx2+...+fxN6N

  

Traditionally, Simpson's rule is written as: given N where N is an even integer and given equally spaced points a=x0,x1,x2,...,xN=b, an approximation to the integral abfxⅆx is

bafx0+4fx1+2fx2+4fx3+2fx4+...+fxN3N

• 

By default, the interval is divided into 10 equal-sized subintervals.

• 

For the options opts, see the ApproximateInt help page.

• 

This rule can be applied interactively, through the ApproximateInt Tutor.

Examples

polynomialCurveFittingPolynomialInterpolationx0,x0+x12,x1,f0,f12,f1,z:

integratedintpolynomial,z=x0..x1:

factorintegrated

x0x1f0+f1+4f126

(1)

withStudentCalculus1:

ApproximateIntsinx,x=0..5,method=simpson

sin1943+sin512+sin1343+sin726+sin1543+sin46+sin1743+sin926+sin326+sin743+sin26+sin943+sin526+sin1143+sin36+sin126+sin343+sin543+sin143+sin16

(2)

ApproximateIntxx2x3,x=0..5,method=simpson,output=plot

ApproximateInttanx2x,x=1..1,method=simpson,output=plot,partition=50

To play the following animation in this help page, right-click (Control-click, on Macintosh) the plot to display the context menu.  Select Animation > Play.

ApproximateIntlnx,1..100,method=simpson,output=animation

See Also

Boole's Rule

Newton-Cotes Rules

plot/options

Simpson's 3/8 Rule

Student

Student plot options

Student[Calculus1]

Student[Calculus1][ApproximateInt]

Student[Calculus1][ApproximateIntTutor]

Student[Calculus1][RiemannSum]

Student[Calculus1][VisualizationOverview]

Trapezoidal Rule