Multivariate Approximate Integrals - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : Mathematics : Calculus : Integration : Approximations to Integrals : Multivariate Approximate Integrals

Student[MultivariateCalculus]

  

ApproximateInt

  

return the approximate integral of a bivariate function

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

ApproximateInt(f(x,y), x=a..b, y=c..d, z=e..f, opts)

Parameters

f(x, y)

-

algebraic expression

x, y

-

name; independent variables

a, b, c, d

-

realcons; limits of integration

z=e..f

-

(optional) range over which to plot the dependent variable; e,f are real constants

opts

-

(optional) equation(s) of the form option=value where option is one of coordinates, frames, functionoptions, method, output, partition, prismoptions or showfunction; specify output options

Description

• 

The ApproximateInt(f(x,y),x=a..b,y=c..d) calling sequence returns an approximation to the integral of fx,y.

• 

The ApproximateIntTutor routine offers equivalent capabilities to ApproximateInt in a tutor interface. See the Student[MultivariateCalculus][ApproximateIntTutor] help page.

• 

The opts argument can contain any of the following equations that set output options.

  

 

  

coordinates = cartesian or polar

  

Determines whether the integral is calculated in cartesian or polar coordinates. In polar coordinates, the first variable is assumed to be the radial component. The default is cartesian.

  

 

  

frames = posint..posint

  

For example, frames = a..b.

  

Specifies the number of frames in the animation, b-a+1. Each frame of the animation partitions the plot according to the number in the range a..b corresponding to the current frame. The first frame partitions the domain into an a x a grid. The last frame partitions the domain into a b x b grid. This option is ignored unless output = animation. The default is 3..7.

  

 

  

functionoptions = list

  

Specifies the plot options for plotting the function fx,y. For more information on plotting options, see plot3d/options.

  

 

  

method = midpoint, upper, lower, or random

  

Calculates the approximation of the integral using the midpoint, upper, lower, or random point Riemann sum. The default is midpoint.

  

 

  

output = value, plot, or animation

  

This option controls the return value of the function.

  

* output = value specifies that the value of the approximation is returned. Plot options are ignored if output = value. The default is output=value.

  

* output = plot specifies that a plot displays, which shows the expression and an approximation to the integral.

  

* output = animation specifies that an animation displays, which shows the expression and approximations using a sequence of partitions each of which is a refinement of its predecessor. Note: To play an animation in this help page, right-click (Control-click, on Macintosh) the plot to display the context menu.  Select Animation > Play.

  

 

  

partition = [posint, posint]

  

The partition option controls the partition of the interval. By default, the interval is partitioned by 5,5.

  

 

  

prismoptions = list

  

Specifies the plot options for plotting the approximation to the integral of fx,y. For more information on plotting options, see plot3d/options.

  

 

  

showfunction = true or false

  

Determines whether the function fx,y is plotted. The default is true.

  

 

  

caption = anything

  

A caption for the plot.

  

The default caption is constructed from the parameters and the command options. caption = "" disables the default caption. For more information about specifying a caption, see plot/typesetting.

Examples

withStudentMultivariateCalculus:

ApproximateIntx+y2,x=1..4,y=1..6

266.0700000

(1)

ApproximateIntx2+y2,x=4..4,y=6..6,output=animation,partition=6,6,frames=2..7

ApproximateIntsinxsiny,x=3..3,y=3..3,z=2..2,output=plot,partition=5,5

The command to create the plot from the Plotting Guide is

ApproximateIntr,r=0..5,t=0..π2,coordinates=polar,output=plot,showfunction=false,prismoptions=color=green,orientation=165,80,0

See Also

plot3d/options

Student

Student[MultivariateCalculus]

Student[MultivariateCalculus][ApproximateIntTutor]