Part 11 - General regions (2)

Introduction

In this part we’ll cover how to compute volumes using double integrals, as well as defining the triple integral over general regions.

Properties of double integral

  1. D(f(x,y)+g(x,y)) dA=Df(x,y) dA+Dg(x,y) dA\iint_D (f(x, y) + g(x, y))\ dA = \iint_D f(x, y)\ dA + \iint_D g(x, y)\ dA

Quick proof:

D(f(x,y)+g(x,y)) dA=limΔx0Δy0j=1mi=1n(f(xi\*,yj\*)+g(xi\*,yj\*))(ΔA)ij\iint_D (f(x, y) + g(x, y))\ dA = \lim_{\substack{\Delta x \to 0 \newline \Delta y \to 0}} \sum_{j = 1}^{m} \sum_{i = 1}^{n} (f(x_{i}^{\*}, y_{j}^{\*}) + g(x_{i}^{\*}, y_{j}^{\*})) (\Delta A)_{ij}

We can split this sum into:

j=1mi=1nf(xi\*,yj\*)+(ΔA)ij\sum_{j = 1}^{m} \sum_{i = 1}^{n} f(x_{i}^{\*}, y_{j}^{\*}) + (\Delta A)_{ij} j=1mi=1ng(xi\*,yj\*)+(ΔA)ij\sum_{j = 1}^{m} \sum_{i = 1}^{n} g(x_{i}^{\*}, y_{j}^{\*}) + (\Delta A)_{ij}

These are the respective double integrals. Note that all of these properties uses the same approach for the proof so :].

  1. Dcf(x,y) dA=cDf(x,y) dA\iint_D c \cdot f(x, y)\ dA = c \cdot \iint_D f(x, y)\ dA
  2. If f(x,y)g(x,y)f(x, y) \leq g(x, y) for all (x,y)D(x, y) \in D. Df(x,y) dADg(x,y)dA\iint_D f(x, y)\ dA \leq \iint_D g(x, y) dA
  3. Suppose D=D1D2D = D_1 \cup D_2 where D1D_1 and D2D_2 do not overlap, except at boundary points. Df(x,y) dA=D1f(x,y) dA+D2f(x,y) dA\iint_D f(x, y)\ dA = \iint_{D_1} f(x, y)\ dA + \iint_{D_2} f(x, y)\ dA
  4. Dk dA\iint_D k\ dA This is the volume under the graph of the constant function, plane, above DD. In otherwods, cylinder of height kk with waist DD. Which means we have an area of DkD \cdot k.

In the special case k=1k = 1, we get the area of DD.

Computing volume

To understand how we can compute volumes with double integrals, let’s do this example.

Example 1

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

So, f(x,y)=x2+y2f(x, y) = x^2 + y^2. We have a region bounded by functions of x, which means we have a type I region.

Let’s find the intersection points:

2x=x2x22x=0x(x2)=0x1=0x2=22x = x^2 \newline x^2 - 2x = 0 \newline x(x - 2) = 0 \newline x_1 = 0 \newline x_2 = 2

We want to compute the volume under the paraboloid. This means:

Df(x,y) dA=02x22x(x2+y2) dy dx\iint_D f(x, y)\ dA = \int_0^2 \int_{x^2}^{2x} (x^2 + y^2)\ dy\ dx02x2y+y33y=x2y=2x dx\int_0^2 x^2y + \dfrac{y^3}{3} \bigg\rvert_{y = x^2}^{y = 2x} \ dx02(2x3+8x33)(x4+x63) dx\int_0^2 \left(2x^3 + \dfrac{8x^3}{3}\right) - \left(x^4 + \dfrac{x^6}{3}\right)\ dx02143x3x4x63 dx\int_0^2 \dfrac{14}{3} x^3 - x^4 - \dfrac{x^6}{3}\ dx1412x4x55x721x=0x=2==5133256421\dfrac{14}{12} x^4 - \dfrac{x^5}{5} - \dfrac{x^7}{21} \bigg\rvert_{x = 0}^{x = 2} = \ldots = \dfrac{51}{3} - \dfrac{32}{5} - \dfrac{64}{21}

Let’s do a more challenging example.

Example 2

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

Let’s decipher this a bit. x=0x = 0, just means yzyz-plane and z=0z = 0 just means xyxy-plane.

But we need to find the points on the plane x+2y+z=2x + 2y + z = 2

It is sufficient to find three points.

Let’s set x=0x = 0 and y=0y = 0 (meaning zz-axis):

z=2z = 2

Which means point (0,0,2)(0, 0, 2).

Now set x=0x = 0 and z=0z = 0 (meaning yy-axis):

2y=2y=12y = 2 \newline y = 1

Which means point (0,1,0)(0, 1, 0)

Now with x=2yx = 2y:

x+x=22x=2x=1x + x = 2 \newline 2x = 2 \newline x = 1

Which means y=12y = \dfrac{1}{2}

Which means (1,12,0)(1, \dfrac{1}{2}, 0)

Now let’s express this plane in terms of two variables:

f(x,y)=2x2yf(x, y) = 2 - x - 2y

We call this region for DD. Our tetrahedron lies under the graph for f(x,y)f(x, y) above D.

We need to find the line that holds our region. Since we know 2 points on this plane, let’s use these.

y=kx+my = kx + mk=ΔyΔx=11201=12k = \dfrac{\Delta y}{\Delta x} = \dfrac{1 - \dfrac{1}{2}}{0 - 1} = -\dfrac{1}{2}1=120+mm=11 = -\dfrac{1}{2} \cdot 0 + m \newline m = 1y=12x+1y = -\dfrac{1}{2} x + 1

We have a bounded region with functions of x, these means type I region.

Therefore, the volume must be:

01x2x2+12x2y dy dx\int_0^1 \int_{\frac{x}{2}}^{-\frac{x}{2} + 1} 2 - x - 2y\ dy\ dx

I’ll same myself some time (for now) and just give us the final answer:

13\boxed{\dfrac{1}{3}}

Triple integrals over general regions

We know how to compute the \iiint over a rectangular box. Let’s use the same approach as for general regions for the double integral.

f(x,y,z)f(x, y, z) is defined on some bounded solid, EE. Let’s enclose EE in a rectangular box and define f~\tilde{f}.

Let’s call this rectangular box for BB.

f~={f(x,y,z)(x,y,z)E0(x,y,z)E\tilde{f} = \begin{cases} f(x, y, z) & (x, y, z) \in E \newline 0 & (x, y, z) \notin E \end{cases}

This means that:

Ef(x,y,z) dV=Bf~(x,y,z) dV\iiint_E f(x, y, z)\ dV = \iint_B \tilde{f}(x, y, z)\ dV

The main idea here is that, when computing several integrals, we can view our variables as “inner” and “outer” variables.

In the case for computing double integrals, we only have one inner and one outer, so it’s not that interesting.

However, in the case for three or more variables, we must have this view.

If we for example make zz the inner variable and xx and yy the outer variables then:

Ef(x,y,z) dV=Dg1(x,y)g2(x,y)f(x,y,z) dz dA\iiint_E f(x, y, z)\ dV = \iint_D \int_{g_1(x, y)}^{g_2(x, y)} f(x, y, z)\ dz\ dA

Let’s properly define it.

Definition 1 (Triple integral over a general region)

To find the triple integral, over solid EE. Choose one inner variable and two outer variables. Fix the outer variables, then determine how the inner variable changes. Then integrate, at first over inner variable, then over outer variables.

Ef(x,y,z) dV=Dg1(x,y)g2(x,y)f(x,y,z) dz dA\iiint_E f(x, y, z)\ dV = \iint_D \int_{g_1(x, y)}^{g_2(x, y)} f(x, y, z)\ dz\ dA
Example 3

Find Ex dV\iiint_E x\ dV, where EE is the ball x2+y2+z21x^2 + y^2 + z^2 \leq 1. E lies between the upper hemisphere and lower hemisphere above the unit disc, with radius 1 in the xyxy-plane.

Let’s see how zz changes:

z2=1x2y2z=±1x2y2z^2 = 1 - x^2 - y^2 \newline z = \pm \sqrt{1 - x^2 - y^2}E={(x,y)(x,y)D,1x2y2z1x2y2}E = \{(x, y) | (x, y) \in D, -\sqrt{1 - x^2 - y^2} \leq z \leq \sqrt{1 - x^2 - y^2} \}

Let’s make zz our inner variable:

Ex dV=D1x2y21x2y2x dz dA\iiint_E x\ dV = \iint_D \int_{-\sqrt{1 - x^2 - y^2}}^{\sqrt{1 - x^2 - y^2}} x\ dz\ dADxzz=1x2y2z=1x2y2 dA\iint_D xz \bigg\rvert_{z = -\sqrt{1 - x^2 - y^2}}^{z = \sqrt{1 - x^2 - y^2}}\ dAD2x1x2y2 dA\iint_D 2x\sqrt{1 - x^2 - y^2}\ dA

Let’s find this double integral. Looking at this integral, one can see that, if we integrate with respect to xx first, it will be alot easier.

Since the unit disc is of both type I and II, let’s perform a type II double integral.

111y21y22x1x2y2 dx dy\int_{-1}^{1} \int_{-\sqrt{1 - y^2}}^{\sqrt{1 - y^2}} 2x\sqrt{1 - x^2 - y^2}\ dx\ dy

Let u=x2u = x^2 and therefore du=2x dxdu = 2x\ dx. Our new limits are therefore 1y21 - y^2.

111y21y21y2u du dy\int_{-1}^{1} \int_{1 - y^2}^{1 - y^2} \sqrt{1 - y^2 - u}\ du\ dy

We have a integral from and to the same limit, therefore this entire integral becomes 0.

Properties of triple integrals

As we have seen with double integrals, we have some properties.

      1. same as double integral properties.

However: 5) D1 dA\iint_D 1\ dA = Area over D.

In the triple integral case: 5) E1 dV\iiint_E 1\ dV = Volume over solid.