Instructor Dr. S. Nikitin
To calculate double or multiple integrals one needs to build iterative integrals and then to calculate them.
"Maple" can help you to evaluate simple iterative integrals. You need to use the student-package.
First load the package
>with(student):
Then you can use the following "Maple" procedures
>value(Doubleint(g(x,y),x=a(y)..b(y),y=c..d));
>value(Tripleint(f(x,y,z),x=a(y,z)..b(y,z),y=c(z)..d(z),z=g..h));
in order to evaluate double and triple integrals, respectively. Notice that first you need to set up limits of integration correctly and then use the "Maple" procedures. If, for some reason, you decide to change the order of integration, then you need to recalculate all the limits of integration.
x^2+y^2 < 1
x^2+y^2 < 1
z = 5 - x^2 - y^2
and below by the paraboloid
z = 4x^2 + 4 y^2
x^2 + y^2 + z^2 =2
and below by the circular paraboloid
z = x^2 + y^2