This is day 6 of Unit 3.

Brain Gains (Rapid Recall, Jivin' Generation)

  • Draw the region $D$ whose volume is given by the triple integral $\ds\int_{0}^{1}\int_{0}^{1-x}\int_{0}^{1-y}dzdydx.$

Solution

You end up with a pyramid, with a square base on the $xz$-plane. Note that $z = 1-x$ is a plane parallel to the $y$-axis, and $y=1-x$ is a plane parallel to the $x$-axis. We want the region in the first octant (all variables are nonnegative) that is bounded by these two planes.

Here's a solution with Mathematica.

R = ParametricRegion[{x, y, z}, {{x, 0, 3}, {y, 0, 1 - x}, {z, 0, 1 - y}}];
Region[R, Axes -> True, AxesLabel -> {x, y, z}, AxesOrigin -> {0, 0, 0}]
  • The triple integral $\ds\int_{0}^{1}\int_{0}^{1-x}\int_{0}^{1-y}dzdydx$ gives the volume of the region $D$ above. Set up a formula that would give the $x$-coordinate of the centroid of $D$ (the center-of-mass assuming constant density). Then compute the volume integral.

Solution

The $x$-coordinate of the centroid is $$\bar x = \frac{\iiint_D x dV}{\iiint_D dV} = \frac{\ds\int_{0}^{1}\int_{0}^{1-x}\int_{0}^{1-y}xdzdydx}{\ds\int_{0}^{1}\int_{0}^{1-x}\int_{0}^{1-y}dzdydx}.$$

The volume integral is 1/3, and I'll jump straight to Mathematica to compute it.

  • The first option focus on the iterated nature of the integral.
  • The second option is streamlined.
  • The third option puts the bounds as variables at the top of your code. This allows for using the bounds in many ways at the same time. The Evaluate[] command may be needed at times to force Mathematica to use the variables you have defined.
Integrate[Integrate[Integrate[1, {z, 0, 1 - y}], {y, 0, 1 - x}], {x, 0, 1}]
Integrate[1, {x, 0, 1}, {y, 0, 1 - x}, {z, 0, 1 - y}]

outerB = {x, 0, 1}
middleB = {y, 0, 1 - x}
innerB = {z, 0, 1 - y}
volume = Integrate[1, outerB, middleB, innerB]

R = ParametricRegion[{x, y, z}, Evaluate[{outerB, middleB, innerB}]];
Region[R, Axes -> True, AxesLabel -> {x, y, z}, AxesOrigin -> {0, 0, 0}]
centroid = Integrate[{x, y, z}, outerB, middleB, innerB]/volume
  • Swap the integral $\int_{-3}^{3}\int_{0}^{\sqrt{9-x^2}}e^{-x^2-y^2}dydx$ to polar coordinates, and then compute it.

Solution

The region described by $-3\leq x\leq 3$ and $0\leq y\leq \sqrt{9-x^2}$ is the upper half of a disc of radius 3. Bounds in polar coordinates are $0\leq \theta\leq \pi$ and $0\leq r\leq 3$. Note that $x^2+y^2=r^2$, which means $e^{-x^2-y^2} = e^{-r^2}$. Also remember the Jacobian is $|r|$. We now have $$\int_{-3}^{3}\int_{0}^{\sqrt{9-x^2}}e^{-x^2-y^2}dydx = \int_{0}^{\pi}\int_{0}^{3}e^{-r^2}rdrd\theta.$$

Note that $\int_{0}^{3}e^{-r^2}rdr$ does not contain $\theta$, which means this will become a constant once we've finished the inside integral. This gives $$\int_{0}^{\pi}\int_{0}^{3}e^{-r^2}rdrd\theta = \left(\int_{0}^{3}e^{-r^2}rdr\right)\int_{0}^{\pi}d\theta.$$ The point is that we just separated the problem into two different integrals.

  • The integral with respect to $\theta$ yields $\pi$.
  • The integral with respect to $r$ requires a substitution (such as $u = -r^2$) and yields $\frac{1}{2}(1-e^{-9})$.

Overall, this gives $\int_{-3}^{3}\int_{0}^{\sqrt{9-x^2}}e^{-x^2-y^2}dydx = \frac{\pi}{2}(1-e^{-9}).$

With Mathematica, the polar integral will evaluate exactly, whereas the rectangular one will not. To get exact answers, sometimes you MUST change to a different coordinate system. Both quickly evaluate when using a numerical approximation.

Integrate[Exp[-r^2] r, {theta, 0, Pi}, {r, 0, 3}]
Integrate[Exp[-x^2 - y^2], {x, -3, 3}, {y, 0, Sqrt[9 - x^2]}]

NIntegrate[Exp[-r^2] r, {theta, 0, Pi}, {r, 0, 3}]
NIntegrate[Exp[-x^2 - y^2], {x, -3, 3}, {y, 0, Sqrt[9 - x^2]}]

Group Problems

  1. Consider $\int_{0}^{4}\int_{x}^{4}e^{y^2}dydx$.
    • Draw the region described by the bounds.
    • Swap the order of the bounds on the integral (use $dxdy$ instead of $dydx$).
    • Compute the integral.
  2. Draw the region described by the bounds of each integral. Use Mathematica to verify that you are correct.
    • $\ds\int_{-3}^{3}\int_{0}^{9-x^2}\int_{0}^{5}dzdydx$
    • $\ds\int_{0}^{1}\int_{0}^{1-z}\int_{0}^{\sqrt{1-x^2}}dydxdz$
  3. Set up an integral formula to compute each of the following:
    • The $z$-coordinate of the center-of-mass (so $\bar z$) of the solid object in the first octant (all variables positive) that lies under the plane $2x+3y+6z=6$.
    • The $y$-coordinate of the center-of-mass (so $\bar y$) of the same object.
  4. Compute the integral $\int_0^3\int_{2x}^6 e^{y^2}dydx$ by first swapping the order of integration (draw the region first).


Today

« November 2024 »

Sun

Mon

Tue

Wed

Thu

Fri

Sat

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30