[Math] Use a Double Integral to find the area between two circles

integrationmultivariable-calculus

I am having a difficult time solving this problem. I have tried this several different ways, and I get a different result, none of which is correct, every time. I've derived an answer geometrically and cannot replicate it with a double integral.

Here's the problem: Use a double integral to find the area between two circles $$x^2+y^2=4$$ and $$(x−1)^2+y^2=4.$$

Here is how I have tried to go about this problem:

First, I graphed it to get a good idea visually of what I was doing.
Here's the graph I scribbled on.
The region I'm interested is where these two circles overlap. This region can easily be divided into two separate areas. There are clearly a number of ways to go about solving this…but the one I opted for is to find the shaded region. The bounds for $x$ in this case are between $D$ and $C$. D can be found by setting $C_1=C_2$, and $x$ turns out to be $\frac{1}{2}$. On the right, $x$ is where $C_1(y)=0$, $x=\pm2$, so $x=2$ at point $C$. $y$ is greater than $B_y$ and less than $A_y$, which are also found where $C_1=C_2$, and $y$ turns out to be $\pm\sqrt{\frac{15}{4}}$. So far so good. Now I know my limits of integration. But here's what I don't understand. What am I actually integrating? $x$ has constant bounds, and $y$ does not, and looking at other double integral problems, that would lead me to believe that I should integrate $y$ first as a function of $x$, evaluate it at its bounds, and then integrate $x$ and evaluate it at its bounds giving me half the area I am looking for. However, when I try to do this, I get utter nonsense for an answer, or I get lost trying to set up the problem.

I could really use the help, I've spent entirely too much time trying to puzzle through this. Thank you in advance!

P.s. I determined the area geometrically using a CAD program to calculate the area, and it should be approximately $8.46$.

Best Answer

As a double integral, this is $I=\int_R dA$, where $R$ is the region given by the intersection of the two disks. This integral can be evaluated as an iterated integral in several ways. Picking up where you left off, we can integrate with respect to $y$ first, then with respect to $x$, i.e., $$I=2\int_\frac12^2 \int_{-\sqrt{4-x^2}}^{\sqrt{4-x^2}}dy\;dx.$$ You could take further advantage of symmetry by changing the lower bound of $y$ to $0$ and multiplying by $2$, but that doesn’t really make things any simpler.

You could instead integrate with respect to $x$ first:$$I=4\int_0^{\frac{\sqrt{15}}2}\int_\frac12^{\sqrt{4-y^2}} dx\;dy.$$ The key thing in both cases is that the bounds of the inner integral will be variable. I often find it helpful to draw a typical line segment for the inner integral to make sure that I get the bounds right. For example, in this second integral, for each value of $y$, the integral runs over a line segment parallel to the $x$-axis that runs from $x=\frac12$ out to the edge of the left-hand disk.

If you don’t want to deal with iterated integrals at all, this problem is a good candidate for Green’s theorem: $I=\int_R dA=\int_{\partial R}y\;dx$. You can often make the line integral simpler without changing its value by adding the differential of some function to the integrand. If you parametrize the bounding arcs as $\langle 2\cos t,2\sin t\rangle$ and $\langle 1-2\cos t,-2\sin t\rangle$, respectively, and use the differential form $\frac12(x\;dy-y\;dx)$ for the line integral, the integrals end up being very simple to evaluate:$$I=\int_{-\arccos\frac14}^{\arccos\frac14}2\;dt+\int_{-\arccos\frac14}^{\arccos\frac14}2-\cos t\;dt=\int_{-\arccos\frac14}^{\arccos\frac14}4-\cos t\;dt.$$