How Do You Calculate the Area Between Two Overlapping Circles?

  • Context: Undergrad 
  • Thread starter Thread starter balrog1212
  • Start date Start date
  • Tags Tags
    Multivariable
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 3K views
balrog1212
Messages
3
Reaction score
0
Hi,

I've been working on this problem for a few days and I'm pretty stuck. I'm working on how much area is eclipsed by some arbitrary planet by another over a given time. My question is if I have two circles one given by (y-100)^2+x^2 = 100^2 and the other given by (y+100)^2+x^2 = 100^2, how much area will be between those two curves as the second circle is shifted up until it is directly on top of the other circle?

my attempt to do this was to make the first circle (y-100)^2+x^2 = 100^2 and the second circle (y+100-t)^2+x^2 = 100^2. I would then want to find the area between those two curves as t goes from 0 to 200.

My ability to take integrals with multiple variables is poor but I will be taking calc 3 next semester so that should help.

any information on how to set this up or general help would be greatly appreciated.

Thanks
 
Physics news on Phys.org
Could I just use plane geometry to find the area between the two circles through the whole process of t going from 0 to 200?

I guess I could rephrase my question as "If I wanted to find the area between the two circles as t goes from 0 to 200 what would it be?"

at t=0 the area would be zero, at t=200 the area would be 10,000pi

so the total area I want to find would be (area at t=0+...+area at t=50+...+area at t=100+...+area at t=150+...+area at t=200) with every area in between those accounted for too.
 
The basic calculation gets one half, so at the end it is doubled.

Let r = radius of circle, s = t/2 (makes life easier for me). Consider line (L) connecting the two points where the circles overlap. The line from circle center to L has length r-s.
L has length 2√(2rs-s2). Therefore area of triangle is:
A=(r-s)√(2rs-s2).

The arc of the circle overlap is B=2arccos(1 - s/r). Therefore the area of the sector is C=Br2/2.

So the area you want is 2(C - A).

I suggest you check my calculations, so you will understand what is going on.