- I-Learn, Class Pictures, Learning Targets, Text Book Practice
- Prep Tasks: Unit 1 - Motion, Unit 2 - Derivatives, Unit 3 - Integration, Unit 4 - Vector Calculus
We still have some tasks from Day 28 to finish discussing in class.
Day 30 - Prep
Task 28.1
We have seen how to compute the center of mass of a rod (a 1 dimensional object) and triangle (a 2 dimensional object). This task will do so with a circular region (2 dimensional object) and 3D solid.
- Consider the semicircular disc $R$ that lies above the $x$-axis and below the circle of radius $a$. If you would rather work with numbers instead of variables, feel free to let $a=5$ for this problem.
- We know the area of $R$ is $\frac{1}{2}\pi a^2$. Set up a double integral using polar coordinates to compute this area. Then compute the integral by hand and simplify your work to obtain the correct area.
- Let's assume the density for this problem is $\delta = 1$, so that $dm=dA$. When the density is constant, we use the word "centroid" instead of "center-of-mass" to talk about the geometric center of an object. The centroid in the $x$-direction is given by the formula $$\bar x = \frac{\ds\iint_R xdA}{\ds\iint_R dA}= \frac{\ds\int_0^\pi\int_0^{a} \overbrace{(r\cos\theta)}^{x} \overbrace{r dr d\theta}^{dA}}{\ds\int_0^\pi\int_0^{a} \underbrace{r dr d\theta}_{dA}}.$$ Compute the integrals above, by hand, to show that $\bar x=0$.
- Set up an integral formula, like the one above, to compute $\bar y$. Show the integral formula you used, and then compute it (feel free to use software) to obtain $\bar y$. You can check your answer is correct by referring to a list of centroid of regions (such as this Wikipedia list).
- The triple integral $\ds\int_{0}^{5}\int_0^7\int_{0}^{10-2x}dzdydx$ gives the volume of a solid domain $D$ in space.
- Draw the solid domain $D$ described by the bounds of the integral above. This is the solid satisfying the inequalities $0\leq x\leq 5$, $0\leq y\leq 7$, and $0\leq z\leq 10-2x$.
- Let $\delta =1$ so that $dm=\delta dV = 1dV$. The centroid of $D$ has three coordinates $(\bar x, \bar y, \bar z)$. The $x$-coordinate is given by the integral formula $$\bar x = \frac{\ds\iiint_R xdV}{\ds\iiint_R dV}= \frac{\ds\int_{0}^{5}\int_0^7\int_{0}^{10-2x}(x)dzdydx}{\ds\int_{0}^{5}\int_0^7\int_{0}^{10-2x}1dzdydx}.$$ Compute this triple integral and simplify to show that $\bar x = \frac{5}{3}$.
- Modify the above formula to obtain integral formulas for both $\bar y$ and $\bar z$. Then state the values of $\bar y$ and $\bar z$, either by using facts we've already proven or by computing the integrals directly (use software).
Task 28.2
For each region $R$ below, draw the region in the $xy$-plane. Set up an iterated integral in polar coordinates ($x=r\cos\theta$, $y=r\sin\theta$) that gives the area of the region and then use the given density to set up an iterated double integral that gives the mass of a metal plate that occupies the region and has the given variable density. Use software to compute each integral.
For example, consider the region that is inside the circle $x^2+y^2=9$, along with the density $\delta(x,y)=y^2$. We can describe the region using the polar inequalities $0\leq \theta \leq 2\pi$ and $0\leq r\leq 3$, which gives us the bounds needed for our integral.
- The area is $\ds A=\iint_R \delta dA = \int_0^{2\pi}\int_0^3\underbrace{rdrd\theta}_{dA} = 9\pi.$
- The mass is $\ds m=\iint_R \delta dA = \int_0^{2\pi}\int_0^3\underbrace{(r\sin\theta)^2}_{\delta=y^2}\underbrace{rdrd\theta}_{dA} = \frac{81\pi}{4}.$
The Mathematica code below was used to compute the integrals above (along with a graphical check that the region is the correct region - the last line is there for backwards compatibility, and can be ignored if you have Mathematica 13.0 or greater).
OuterBounds = {theta, 0, 2 Pi};
InnerBounds = {r, 0, 3};
Integrate[r, OuterBounds, InnerBounds]
Integrate[(r Sin[theta])^2 r, OuterBounds, InnerBounds]
CoordinateSystem = {r Cos[theta], r Sin[theta]};
ParametricPlot[CoordinateSystem, OuterBounds, InnerBounds, Mesh -> {10, 0}]
ParametricPlot[Evaluate[CoordinateSystem, OuterBounds, InnerBounds], Mesh -> {10, 0}]
- The region $R$ is the quarter disc in the first quadrant that lies inside the circle $x^2+y^2=25$. The density is $\delta(x,y)=x$.
- The region $R$ is bounded above by $y=\sqrt{9-x^2}$, bounded below by $y=x$, and bounded on the left by the $y$-axis. The density is $\delta(x,y)=xy^2$.
- The region $R$ is the inside of the cardioid $r=3+3\cos\theta$. The density is $\delta(x,y)=7$.
- The region $R$ is the triangular region below $y=\sqrt 3 x$, above the $x$-axis, and to the left of $x=1$. The density is $\delta(x,y)=7$.
Task 28.3
This task provides you with a couple integrals that cannot be done, without first making some change. The first requires a change of order of integration. The second requires a complete change of coordinates.
- Compute by hand the iterated integral $$\ds \int_0^{2\sqrt{\pi}}\int_{y/2}^{\sqrt{\pi}} \sin(x^2)dxdy.$$ (Hint, you will need to swap the order of integration first.)
- The double integral $\ds\int_0^{\sqrt{2}}\int_{y}^{\sqrt{4-y^2}} e^{x^2+y^2}dxdy$ computes the mass of a region in the plane with density $\delta = e^{x^2+y^2}$ that is bounded by the curves $y=0$, $y=\sqrt{2}$, $x=y$, and $x=\sqrt{4-y^2}$.
- Draw the region described by these bounds. (Did you get a sector of a circle, something like a 1/8th of a pizza?)
- Give bounds of the form $?\leq \theta\leq ?$ and $?\leq r\leq ?$ that describe the region using polar coordinates. (The new bounds are all constants.)
- Convert the Cartesian integral to an integral in polar coordinates (don't forget the $r$ that appears as $dxdy = dA = rdrd\theta$).
- Compute the integral by hand. Show your steps.
Task 28.4
Pick some problems related to the topics we are discussing from the Text Book Practice page.
We still have some tasks from Day 30 to finish discussing in class.
Day 30 - Prep
Task 30.1
When we use double integrals to find centroids, the formulas for the centroid are similar for both $\bar x$ and $\bar y$. In other courses, you may see the formulas that appear in this task, because the ideas are presented without requiring knowledge of double integrals. Integrating the inside integral from the double integral formula gives the single variable formulas that you'll find in other courses.
Let $R$ be the region in the plane with $a\leq x\leq b$ and $g(x)\leq y\leq f(x)$.
- Set up an iterated integral to compute the area of $R$. Then compute the inside integral. You should obtain a familiar formula from first-semester calculus.
- Set up an iterated integral formula to compute $\bar x$ for the centroid. By computing the inside integrals, show that $$\ds\bar x = \frac{\int_a^b x (f-g)dx}{\int_a^b (f-g)dx}.$$
- If the density depends only on $x$, so $\delta = \delta (x)$, set up an iterated integral formula to compute $\bar y$ for the center of mass. Compute the inside integral and show that $$\ds\bar y = \frac{\ds\int_a^b \frac{1}{2}(f^2-g^2)\delta(x)dx}{\ds\int_a^b (f-g)\delta(x)dx} = \frac{\ds\int_a^b \overbrace{\frac{(f+g)}{2}}^{\tilde y}\overbrace{\delta(x)\underbrace{(f-g)dx}_{dA}}^{dm}}{\text{mass}}.$$
In class, fell free to ask and we'll analyze the integral formula above and show how you can set this up as a single integral using geometric reasoning. We'll discuss the quantities $\tilde y$, $dm$, and $dA$, as appropriate.
Task 30.2
We've been working with rods, wires, thin plates, and solid domains. For example, we could work with a circular wire, or a circular disc, or a ball. How do the centroid formulas change in each setting? This task has us examine these three setting, set up the corresponding integrals, use software to solve them, and then compare the locations of the centroids.
Consider the curve $C$ that is the upper half of the circle $x^2+y^2 = 49$, the region $R$ that lies above $y=0$ and inside the circle $x^2+y^2=49$, and the solid domain $D$ that lies inside the sphere $x^2+y^2+z^2=49$ and satisfies $y\geq 0$. Because of symmetry, for each region it is clear that $\bar x=\bar z=0$.
- Set up an integral formula to compute $\bar y$ for the curve $C$. [Hint: You'll need a parametrization.]
- Set up an integral formula to compute $\bar y$ for the region $R$. [You can use Cartesian coordinates or polar coordinates.]
- Set up an integral formula to compute $\bar y$ for the domain $D$.
- Use software to compute all three integral formulas above, obtaining an exact value for the answer (not a numerical approximation).
- For each object, state a general formulas for $\bar y$ if the radius is $a$ (not $7$).
Task 30.3
Pick a few regions from Wikipedia's List of Centroids and then set up and compute (with software) iterated integral formulas to find the centroids from that list. Try doing some that are 2D, and some that are 3D.
Task 30.4
Pick some problems related to the topics we are discussing from the Text Book Practice page.
Day 31 - Prep
There are no new prep problems. Continue working on the previous problems we have not yet discussed in class.
- 28.2
- 28.3
- 30.1
- 30.2
- 30.3
Day 31 - In class
Brain Gains (Rapid Recall, Jivin' Generation)

- Set up a triple integral that would give the volume of the solid region in space that is bounded by the surfaces $z = 2-y^2$, $y+z=0$, $x=0$ and $x=3$. Construct a rough sketch of the region as part of your work.
- Draw the region whose area is given by $\ds\int_0^{\pi/2}\int_0^{3\sin(2\theta)}rdrd\theta$.
- Set up an iterated integral formula that would give the $x$-coordinate of the centroid of the right most petal of the rose $r = 5\cos(2\theta)$.
- Convert the integral $\ds\int_0^{3}\int_0^{x}xydydx$ to polar coordinates.
- A wire is parametrized by $\vec r(t) = (2\cos t, t^2, 3t)$ for $0\leq t\leq 7$. The temperature at points on the wire is given by $T(x,y,z)=x^2+yz$. Set up an iterated integral formula that would give the average temperature of the wire.
Group Problems
- Set up a triple integral that would give the volume of the solid region that is bounded above by the paraboloid $z=6-x^2-y^2$, and below by the cone $z = \sqrt{x^2+y^2}$. Construct a rough sketch of the region as part of your work.
- Set up a triple integral that would give the volume of the solid region in the first octant that is below the plane $z=9$ and above the paraboloid $z=x^2+y^2$.
- A metal plate lies over the right most petal of the rose $r = 4\sin(3\theta)$. The density at points on the platen is give by $\delta(x,y) = xy^2$. Set up a double integral in polar coordinates to give the average density.
- A metal plate lies over one the right most petal of the rose $r = 3\cos(2\theta)$. The density at points on the plate is given by $\delta(x,y) = x$. Set up a double integral in polar coordinates to give the $y$-coordinate of the center of mass.
Day 32 - Prep
Learning Target Checkoff
A learning target quiz will appear in I-Learn. Complete and submit the quiz before the due date.
|
Sun |
Mon |
Tue |
Wed |
Thu |
Fri |
Sat |
