Sie sind auf Seite 1von 4

Lab 13: Double Integrals

◼ Instructions

Welcome to the assignment for the Double Integrals Lab. The purpose of this assignment is to assess your
ability to find volumes using double integrals. Some things to remember as you complete this assignment:
1. Save the notebook to your computer right away, and save your work often.
2. When you have finished all the exercises, close any unnecessary cells and save as a PDF. (Make sure
you Rasterize all 3-dimensional plots)
3. Upload the PDF on Canvas.
4. Do not delete this notebook. Save all your work until after the semester is over and your final grade has
been issued.

Due Date:
see Canvas

◼ Question 1: Basic problems that you can verify without calculus to check your work.

a) The volume under the plane f(x, y) = 4 over the rectangular region with 0 ≤ x ≤ 3 and 0 ≤ y ≤ 2 is shaped
like a box with known volume. Set up a double integral to calculate this volume.

In[13]:= f[x_, y_] = 4;


3 2
  f[x, y] ⅆ y ⅆ x
0 0

Out[14]= 24

b) The volume under the plane f(x, y) = 4 over the region shown below that is bounded by the x and y axes
2
and the line y = 2 - 3
x should be half the volume of the object in the previous problem. Set up a double
integral to calculate this volume.

Printed by Wolfram Mathematica Student Edition


2 Lab13ChelseySpitzner.nb

2
RegionPlot0 < x < 3 && 0 < y < 2 - x, {x, 0, 3}, {y, 0, 2}, AspectRatio → Automatic
3
2.0

1.5

1.0

0.5

0.0
0.0 0.5 1.0 1.5 2.0 2.5 3.0

In[17]:= f[x_, y_] = 4;


3 2-2/3 x
  f[x, y] ⅆ y ⅆ x
0 0

Out[18]= 12

◼ Question 2

a) Use the RegionPlot command to plot the area of a circle that is in the first quadrant (that is, x > 0 and
y > 0) given that the circle has a radius of 4 and centered at the origin. Your plot could use a range of -1 to 5
1
for both x and y values. (Note: Your graph should be 4
of a circle).

Printed by Wolfram Mathematica Student Edition


Lab13ChelseySpitzner.nb 3

In[23]:= RegionPlot0 < x < 4 && 0 < y < Sqrt4 - x2 , {x, - 1, 5}, {y, - 1, 5}

Out[23]=
2

-1
-1 0 1 2 3 4 5

b) Use the RegionPlot3D command to show the volume under z = 16 - x2 - y2 but above the region in
1
part (a). Your plot could use a range of -1 to 5 for x, y and z values. (Note: this should be 8
of a sphere with
radius 4; the plot will be more clear if you add PlotPoints → 100 in the RegionPlot3D command.)
(Reminder: the domain of the region plot might be different from the domain of functions. Please ignore the
possible error messages or use the Re[ ] on the functions to restrict the domain of functions to real values
only)

Printed by Wolfram Mathematica Student Edition


4 Lab13ChelseySpitzner.nb

In[38]:= Rasterizef[x_, y_] = Sqrt[16 - x ^ 2 - y ^ 2];


RegionPlot3D0 < z < f[x, y] && 0 < y < Sqrt4 - x2 , {x, - 1, 5}, {y, - 1, 5}, {z, - 1, 5}

Less: Invalid comparison with 0. + 1.4708 ⅈ attempted.

Less: Invalid comparison with 0. + 1.4708 ⅈ attempted.

Less: Invalid comparison with 0. + 1.4708 ⅈ attempted.

General: Further output of Less::nord will be suppressed during this calculation.

Out[38]=

c) Set up a double integral to calculate the volume of the shape in part "b".

In[48]:= f[x_, y_] = Sqrt[16 - x ^ 2 - y ^ 2];


3 Sqrt4-x2 
  f[x, y] ⅆ y ⅆ x
0 0

16 3
Out[49]= -2 3 π+2 3 ArcSin  +
3 2
1 5 3 4
ⅈ 6 15 + 117 ArcSinh  - 36 3 ArcTanh  + 32 ArcTanh +
6 7 5 15
8
32 ArcTanh  - 48 3 Log[4] + 48 Log[49] + 96 3 Log3 + 5  - 96 Log47 + 12 15 
15

Printed by Wolfram Mathematica Student Edition

Das könnte Ihnen auch gefallen