¡@

Double Integral Over General Regions

Download Maple Worksheet

1. Evaluate [Maple OLE 2.0 Object], where D  is the region bounded by the parabolas y = 2*x^2  and y = 1+x^2.

First, by solving

y = 2*x^2

y = 1+x^2,

we find the intersections of the parabolas are (1, 2) and (-1, 2). Here is the picture if the region D :

[Maple Plot]

 

We see that fix x  in [-1, 1], y  goes from 2*x^2  to 1+x^2 , so we get

[Maple OLE 2.0 Object] = int(int([x+2*y],y = 2*x .. 1+x^2),x = -1 .. 1)

= int([-3*x^4-x^3+2*x^2+x+1],x = -1 .. 1)  =   32/15

We can view the double integral as the volume of the solid bounded by the planes z = x+2*y(colored blue), z = 0and the cylinders y = 2*x^2 (colored yellow), y = 1+x^2 (colored green).

[Maple Plot][Maple Plot]

3DVIEW3DVIEW

2. Find the volume of the solid that lies under the paraboloid z = x^2+y^2 and above the region D  in the xy -plane bounded by the line y = 2*x and the parabola y = x^2 .

The solid is bounded by the paraboloid z = x^2+y^2 (colored blue), the plane y = 2*x (colored yellow), the cylinders y = x^2(colored green) and the xy -plane. Here is a picture of the solid :

[Maple Plot][Maple Plot]
3DVIEW3DVIEW

By solving

  y = 2*x  

  y = x^2

we find the intersections of the parabolas are (0, 0) and (2, 4). Here is the picture if the region D :

[Maple Plot]

 

We see that fix x  in [0, 2], y  goes from x^2  to 2*x , so we get that the volume equals

[Maple OLE 2.0 Object]  =    int(int([x^2+y^2],y = x^2 .. 2*x),x = 0 .. 2)

= int([-x^6/3-x^4+14*x^3/3],x = 0 .. 2)   =   216/35

¡@

3. Evaluate [Maple OLE 2.0 Object] , where D  is the region bounded by the line y = x-1  and the parabola y^2 = 2*x+6 .

by solving

  y = x-1  

  y^2 = 2*x+6 ,

we find the intersections of the parabolas are (-1, -2) and (5, 4). Here is the picture if the region D :

[Maple Plot]

 

¡@

We see that fix y  in [-2, 4], x  goes from y^2/2-3  to y+1 , so

[Maple OLE 2.0 Object]  =   int(int(xy,x = y^2/2-3 .. y+1),y = -2 .. 4)  

= 1/2   int([-y^5/4+4*y^3+2*y^2-8*y],y = -2 .. 4)  = 36

We can view the double integral as the "signed volume" of the solid bounded by the hyperbolic paraboloid   z = x*y  (colored blue), the cylinders y^2 = 2*x+6  (colored green), and the planes   y = x-1  (colored yellow) and z = 0  (colored pink).

[Maple Plot]
3DVIEW

[Maple Plot] 
3DVIEW

4. Find the volume of the tetrahedron bounded by the planes x+2*y+z = 2, x = 2*y , x = 0 , and z = 0 .

The vertices of the tetrahedron are (0, 0, 0), (0, 0, 2), (0, 1, 0) and  (1, 1/2, 0).

[Maple Plot]
3DVIEW

The volume of the tetrahedron is given by [Maple OLE 2.0 Object] , where D  is the region bounded by the lines x+2*y = 2  and x = 2*y .

[Maple Plot]

 

We see that fix x  in [ 0, 1 ], y  goes from x/2  to 1-x/2 , so we get that the volume equals

[Maple OLE 2.0 Object] =   int(int([2-x-2*y],y = x/2 .. 1-x/2),x = 0 .. 1)

= int([x^2-2*x+1],x = 0 .. 1)  =   1/3  

If we integrate x  first, we have to split the iterated integral into two parts :

[Maple Plot]

 

[Maple OLE 2.0 Object]  =   int(int([2-x-2*y],x = 0 .. 2*y),y = 0 .. 1/2)+int(int([2-x-2*y],x = 0 .. 2-2*y),y = 1/2 .. 1)

¡@

5. Evaluate the iterated integral int(int(sin(y^2),y = x .. 1),x = 0 .. 1) .

If we try to evaluate the integral as it stands, then we need to find the antiderivatives of sin(y^2) . But this is impossible, because int(sin(y^2),y)  does not have a closed form. So we must change the order of integration.

Note that

int(int(sin(y^2),y = x .. 1),x = 0 .. 1)  = [Maple OLE 2.0 Object]

where D  =  {( x, y ) | [Maple OLE 2.0 Object] , [Maple OLE 2.0 Object] }.  

[Maple Plot]

 

From the animation below, we see an alternative description of D is

D  =  {( x, y ) | [Maple OLE 2.0 Object] , [Maple OLE 2.0 Object] }.  

[Maple Plot]

 

Hence, by Fubini's theorem, we have

int(int(sin(y^2),y = x .. 1),x = 0 .. 1)  = [Maple OLE 2.0 Object]  

=   int(int(sin(y^2),x = 0 .. y),y = 0 .. 1)  = int(y*sin(y^2),y = 0 .. 1)   =   1/2-cos(1)/2  .

¡@

¡@

6. Find the volume of the solid bounded by the plane z = 0  and the paraboloid z = 1-x^2-y^2 .

[Maple Plot]
3DVIEW

The volume equals to [Maple OLE 2.0 Object] , where D  is the unit disk x^2+y^2 <= 1 .

[Maple Plot]

In terms of Cartesian coordinates, D is bounded by y = sqrt(1-x^2)  and y = -sqrt(1-x^2)  , so the volume is given by

[Maple OLE 2.0 Object]  =   int(int([1-x^2-y^2],y = -sqrt(1-x^2) .. sqrt(1-x^2)),x = -1 .. 1) .

However, the iterated integral is rather complicated to compute. Note that D is rather easy to described using polar coordinates, namely, [Maple OLE 2.0 Object] .

The volume of the solid is

[Maple OLE 2.0 Object]

=   int(int((1-r^2)*r,r = 0 .. 1),theta = 0 .. 2*Pi) = int(1,theta = 0 .. 2*Pi)*int([r-r^3],r = 0 .. 1)  = Pi/2

¡@

7. Find the volume of the solid that lies under the paraboloid z = x^2+y^2 , above the xy -plane, and inside the cylinder x^2+y^2 = 2*x .

[Maple Plot]

[Maple Plot]

The solid lies above the disk D  whose boundary circle has equation x^2+y^2 = 2*x , i.e., (x-1)^2+y^2 = 1 . Its equation in polar coordinates is given by r = 2*cos(theta) , where theta is in [-Pi/2, Pi/2].

[Maple Plot]

 

The volume of the solid is

[Maple OLE 2.0 Object]  =   int(int(r^2*r,r = 0 .. 2*cos(theta)),theta = -Pi/2 .. Pi/2)

=   4   int(cos(theta)^4,theta = -Pi/2 .. Pi/2)   =   3*Pi/2  .

¡@

8. Find the volume of the solid that bounded by the paraboloid z = x^2+y^2 , the plane z = 1 , the xy -plane, and inside the cylinder x^2+y^2 = 2*x .

[Maple Plot]

[Maple Plot]

 

The volume of the solid can be computed as V[1]-V[2] , where V[1]  is the volume of solid bounded by the cylinder x^2+y^2 = 2*x , z = 0  and z = 1, which is 2*Pi.

[Maple Plot]

while V[2]  is the volume of solid shown below.

[Maple Plot]
3DVIEW

By symmetry V[2]  is 2 times the volume of the solid that lies above the first quadrant, so

[Maple OLE 2.0 Object]

where  R  is the region shown below.

[Maple Plot]

Fix theta in [0, Pi/3], r  goes from 0  to 1 , and f ix theta  in [Pi/3, Pi/2]  , r  goes from 0  to 2*cos(theta) . So we have

[Maple OLE 2.0 Object]

=   2*(int(int((1-r^2)*r,r = 0 .. 1),theta = 0 .. Pi/3)+int(int((1-r^2)*r,r = 0 .. 2*cos(theta)),theta = Pi/3 .. Pi/2))  = 3*sqrt(3)/8

Therefore, the required volume is V[1]-V[2] = 2*Pi-3*sqrt(3)/8 .


Download Maple Worksheet