vote up 52 vote down star
21

I recently came across a problem where I had four circles (midpoints and radius) and had to calculate the area of the union of these circles.

Example image:

For two circles it's quite easy,

I can just calculate the fraction of the each circles area that is not within the triangles and then calculate the area of the triangles.

But is there a clever algorithm I can use when there is more than two circles?

flag
13  
This is a really interesting problem, I remember seeing this in high school geometry class, but never found a solution. If you can't find an answer here, try posting it at mathoverflow.net and let the mathematicians have a crack at it :P – Charles Ma Nov 3 at 13:35
11  
sometimes real programmers need real math – fa. Nov 3 at 15:38
1  
How about for working out the answer to this question - "We have sales reps living at these 4 locations, each of whom service an area with these 4 radii. How much of the country do we cover?" If you had a changing database of sales reps, this becomes a programming question! – Chris Roberts Nov 3 at 15:44
3  
Actually, this is the kind of problem real programmers like to think about. – MAK Nov 3 at 19:13
1  
@zvolkov: circuit boards are described with a language that plops squares and circles down and optionally drags them. "Calculate the copper area". (This can be needed to calculate etch times, know whether to add scavenging artwork, various things.) – DigitalRoss Nov 4 at 19:40
show 2 more comments

9 Answers

vote up 46 vote down check

Find all circle intersections on the outer perimeter (e.g. B,D,F,H on the following diagram). Connect them together with the centres of the corresponding circles to form a polygon. The area of the union of the circles is the area of the polygon + the area of the circle slices defined by consecutive intersection points and the circle center in between them. You'll need to also account for any holes.

circle overlap

link|flag
10  
What happens when there is a hole in the center? – John Gietzen Nov 3 at 14:52
1  
You'll need to subtract the center connected polygon for the hole from the total and add the circle slices for that polygon to the total. – Ants Aasma Nov 3 at 15:03
Very nice. Thank you! – Anton Hansson Nov 3 at 15:19
2  
nice but I guess this will need to a lot of implementation details to handle all the special cases ( circle inside other one, no intersection, holes , one point contact ... ) – fa. Nov 3 at 16:03
2  
yes, but the borders of holes are also (small) arcs. I still think this needs a lot of code to work well. – fa. Nov 3 at 16:40
show 4 more comments
vote up 1 vote down

I found this link which may be useful. There does not seem to be a definitive answer though. Google answers. Another reference for three circles is Haruki's theorem. There is a paper there as well.

link|flag
vote up 13 vote down

Hi

I'm sure there is a clever algorithm, but here's a dumb one to save having to look for it;

-- put a bounding box around the circles;

-- generate random points within the bounding box;

-- figure out whether the random point is inside one of the circles;

-- compute the area by some simple addition and division (proportion_of_points_inside*area_of_bounding_box).

Sure it's dumb, but:

-- you can get as accurate an answer as you want, just generate more points;

-- it will work for any shapes for which you can calculate the inside/outside distinction;

-- it will parallelise beautifully so you can use all your cores.

Regards

Mark

link|flag
2  
This will work, but Monte-Carlo methods like this one, based simply on uniform sampling, generally don't have the best convergence rates. – ShreevatsaR Nov 3 at 13:49
1  
Sorry, but even though I appreciate your effort and think your solution is "practically usable", I consider your approach to be very wrong. This is a problem than can and should be solved by means of math, not brute force. Wasting energy and cores on problems like this is wasteful and lavish. – mafutrct Nov 3 at 16:57
1  
You're right, I'm ashamed of myself, but I've got a cluster with 12,000 cores, I can afford to be lavish. And I can't figure out how to make the elegant mathematical solution scale to that many processors. – High-Performance Mark Nov 3 at 17:46
There's nothing inherently wrong with a Monte-Carlo (or any randomized) approach, provided it gives the required degree of accuracy and does so in a reasonable amount of time. – MAK Nov 3 at 19:16
vote up 7 vote down

I love the approach to the case of 2 intersecting circles -- here's how i'd use a slight variation of the same approach for the more complex example.

It might give better insight into generalising the algorithm for larger numbers of semi-overlapping circles.

The difference here is that i start by linking the centres (so there's a vertice between the centre of the circles, rather than between the places where the circles intersect) I think this lets it generalise better.

(in practice, maybe the monte-carlo method is worthwhile)

alt text

link|flag
I think doing the kind of polygon division suggested by your image would probably be a very good approach. There are a lot of details to work out to code it up. How would it handle a chain of twenty circles, each of which overlaps only the last and next in the chain? Easy to figure out by hand, but what is your algorithm? – PeterAllenWebb Nov 3 at 19:14
vote up 2 vote down

Hmm, very interesting problem. My approach would probably be something along the lines of the following:

  • Work out a way of working out what the areas of intersection between an arbitrary number of circles is, i.e. if I have 3 circles, I need to be able to work out what the intersection between those circles is. The "Monte-Carlo" method would be a good way of approximating this (http://local.wasp.uwa.edu.au/~pbourke/geometry/circlearea/).
  • Eliminate any circles that are contained entirely in another larger circle (look at radius and the modulus of the distance between the centre of the two circles) I dont think is mandatory.
  • Choose 2 circles (call them A and B) and work out the total area using this formula:

(this is true for any shape, be it circle or otherwise)

area(A∪B) = area(A) + area(B) - area(A∩B)

Where A ∪ B means A union B and A ∩ B means A intersect B (you can work this out from the first step.

  • Now keep on adding circles and keep on working out the area added as a sum / subtraction of areas of circles and areas of intersections between circles. For example for 3 circles (call the extra circle C) we work out the area using this formula:

(This is the same as above where A has been replaced with A∪B)

area((A∪B)∪C) = area(A∪B) + area(C) - area((A∪B)∩C)

Where area(A∪B) we just worked out, and area((A∪B)∩C) can be found:

area((A∪B)nC) = area((A∩C)∪(B∩C)) = area(A∩C) + area(A∩B) - area((A∩C)∩(B∩C)) = area(A∩C) + area(A∩B) - area(A∩B∩C)

Where again you can find area(A∩B∩C) from above.

The tricky bit is the last step - the more circles get added the more complex it becomes. I believe there is an expansion for working out the area of an intersection with a finite union, or alternatively you may be able to recursively work it out.

Also with regard to using Monte-Carlo to approximate the area of itersection, I believe its possible to reduce the intersection of an arbitrary number of circles to the intersection of 4 of those circles, which can be calculated exactly (no idea how to do this however).

There is probably a better way of doing this btw - the complexity increases significantly (possibly exponentially, but I'm not sure) for each extra circle added.

link|flag
Whats up with the formatting? Also sorry about the use of n and u for intersection and union, there is probably a better way... – Kragen Nov 3 at 14:44
1  
added some unicode union (∪) and intersection (∩) signs. hopefully they work. – Spoike Nov 3 at 15:26
vote up 1 vote down

Depending on what problem you are trying to solve it could be sufficient to get an upper and lower bound. An upper bound is easy, just the sum of all the circles. For a lower bound you can pick a single radius such that none of the circles overlap. To better that find the largest radius (up to the actual radius) for each circle so that it doesn't overlap. It should also be pretty trivial to remove any completely overlapped circles (All such circles satisfy |P_a - P_b| <= r_a) where P_a is the center of circle A, P_b is the center of circle B, and r_a is the radius of A) and this betters both the upper and lower bound. You could also get a better Upper bound if you use your pair formula on arbitrary pairs instead of just the sum of all the circles. There might be a good way to pick the "best" pairs (the pairs that result in the minimal total area.

Given an upper and lower bound you might be able to better tune a Monte-carlo approach, but nothing specific comes to mind. Another option (again depending on your application) is to rasterize the circles and count pixels. It is basically the Monte-carlo approach with a fixed distribution.

link|flag
vote up 8 vote down

For a different solution from the previous one you could produce an estimation with an arbitrary precision using a quadtree.

This also works for any shape union if you can tell if a square is inside or outside or intersects the shape.

Each cell has one of the states : empty , full , partial

The algorithm consists in "drawing" the circles in the quadtree starting with a low resolution ( 4 cells for instance marked as empty). It cell is either :

  • inside at least one circle, then mark the cell as full,
  • outside all circles, mark the cell as empty,
  • else mark the cell as partial.

When its done, you can compute an estimation of the area : the full cells give the lower bound, the empty cells give the higher bound, the partial cells give the max area error.

If the error is too big for you, you refine the partial cells until you get the right precision.

I think this will be easier to implement than the geometric method which may require to handle a lot of special cases.

link|flag
My guess is that this will converge more rapidly than the monte carlo inside/outside point algorithm too. – Frank Krueger Nov 3 at 15:41
yes it should spend time only on "complex" areas. – fa. Nov 3 at 15:44
This does seem a lot easier to implement. Definitely the best brute force method suggested. Thanks! – Anton Hansson Nov 3 at 16:14
brute force here is called squeeze theorem – fa. Nov 3 at 16:35
That's the kind of algorithm you use in interval arithmetic. en.wikipedia.org/wiki/Interval_arithmetic – rjmunro Nov 3 at 22:39
show 1 more comment
vote up 2 vote down

If you want a discrete (as opposed to a continuous) answer, you could do something similar to a pixel painting algorithm.

Draw the circles on a grid, and then color each cell of the grid if it's mostly contained within a cirle (i.e., at least 50% of its area is inside one of the circles). Do this for the entire grid (where the grid spans all of the area covered by the circles), then count the number of colored cells in the grid.

link|flag
vote up 1 vote down

Here's an algorithm that should be easy to implement in practice, and could be adjusted to produce arbitrarily small error:

  1. Approximate each circle by a regular polygon centered at the same point
  2. Calculate the polygon which is the union of the approximated circles
  3. Calculate the area of the merged polygon

Steps 2 and 3 can be carried out using standard, easy-to-find algorithms from computational geometry.

Obviously, the more sides you use for each approximating polygon, the closer to exact your answer would be. You could approximate using inscribed and circumscribed polygons to get bounds on the exact answer.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.