How do I find a slice of the area of a semi-circle?

83 Views Asked by At

A semi-circle around the origin, with radius $r$, is given by $$f(x) = \sqrt{r^2 - x^2}$$ The area of this semi-circle can be written as $$\int_{-r}^r \sqrt{r^2 - x^2} dx = \frac{\pi r^2}{2}$$ How do I find only a slice of this area, i.e. $$\int_a^b \sqrt{r^2 - x^2} dx$$ for $-r \le a < b \le r$?

There's probably a geometric approach to this, but I'm kinda stuck. If it's easier to calculate a slice of the area of a full circle that's also fine.

3

There are 3 best solutions below

0
On BEST ANSWER

Take $x = r\sin\theta$ so that $r^{2}-x^{2}$ becomes $r^{2}(1-\sin^{2}\theta) = r^{2}\cos^{2}\theta$ and $\sqrt{r^{2}-x^{2}}$ becomes $r\sin\theta$. Now, with this change of variable, one have $dx \to r\cos\theta d\theta$ and, thus: $$\int_{a}^{b}\sqrt{r^{2}-x^{2}}dx = \int_{\sin^{-1}(a/r)}^{\sin^{-1}(b/r)}r^{2}\cos^{2}\theta d\theta = r^{2}\bigg{(}\frac{1}{2}\theta+\frac{1}{4}\sin2\theta\bigg{)}\bigg{|}_{\sin^{-1}(a/r)}^{\sin^{-1}(b/r)}$$

0
On

Let $x=r \sin{t}$ $$I=\int_{\arcsin{\left(\frac{a}{r}\right)}}^{\arcsin{\left(\frac{b}{r}\right)}} r^2 \cos^2{t} \; dt$$ Using the reduction formula for $\cos^2{t}$: $$I=r^2 \left( \frac{t}{2}+\frac{\sin{2t}}{4}\right) \bigg \rvert_{\arcsin{\left(\frac{a}{r}\right)}}^{\arcsin{\left(\frac{b}{r}\right)}}$$ $$I=r^2 \left( \frac{\arcsin{\left(\frac{b}{r}\right)}-\arcsin{\left(\frac{a}{r}\right)}}{2} + \frac{ b\sqrt{r^2-b^2}- a\sqrt{r^2-a^2}}{2r^2}\right)$$ $$\boxed{I=\frac{r^2}{2} \left( \arcsin{\left(\frac{b}{r}\right)}-\arcsin{\left(\frac{a}{r}\right)} \right) + \frac{1}{2}\left( b\sqrt{r^2-b^2}- a\sqrt{r^2-a^2}\right)}$$

0
On

Yes, this can be done in a geometric way. Assume that $a\leqslant 0\leqslant b$ and consider this picture:

enter image description here

The area that you are interested in is the area of two triangles plus the area of a circular sector. The areas of those triangles are$$\frac12(-a)\sqrt{r^2-a^2}\text{ and }\frac12b\sqrt{r^2-b^2}.$$and the area of the circular sector is$$\frac{r^2}2\left(\arccos\left(\frac ar\right)-\arccos\left(\frac br\right)\right).$$So, the area that you are interested in is the sum of these three numbers.

You will have to change a bit this argument in order to deal with the other two cases ($0\leqslant a\leqslant b\leqslant r$ and $-r\leqslant a\leqslant b\leqslant 0$).