Riemann Sums

You can work with partitions.

> gRiemann(x^2+3,x=[-1,-0.5,0.5,1.5,2],[-0.75,0.0,1.1,1.5]);

.......Remember that the user did not have to type in the Maple commands or custom Maple commands which are in red.......

[Maple Plot]

You can select from standard methods.

> gTrap(x^2+3,x=-1..3,4);

[Maple Plot]

You can even work with "n" rectangles.

> Ln:=Lsum(x^2+3,x=-1..3,n);

[Maple Math]

Find the limit of the last result.

> limit(Ln,n=infinity);

[Maple Math]

Find definite or indefinite integrals.

> int(x^2+3,x=-1..3);

[Maple Math]

Estimate definite integrals given data.

> xd:=[1,2,3,4,5,6];

[Maple Math]

> yd:=[2.2,3.4,2.7,1.5,2.7,3.2];

[Maple Math]

> gdiscreteLsum(xd,yd);

[Maple Plot]

.......With MenuMaple the user selects an action button for a Maple command or custom Maple command and enters required information after being prompted.........

Visualize Riemann sums for functions of two variables.

> gMsum3d(x^2+y^2,x=-2..2,y=-2..2,4,4);

[Maple Plot]

>