A person is bored waiting in line. He draws 1000 congruent circles in the plane, all passing through a fixed point, P. What is the largest number of regions into which these circles can split the plane? (Include the region outside the circles in your count)
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
How do you mean by "inverting a circle"? I haven't heard about that before.
uoıʇnןos ןooɔ
That was awesome. Love the use of circle inversion.
can anyone tell me where to read about circle inversion
Nice solution. Is there a way to solve this using graph theory?
Can you attach a picture of the solution. I can't really visualize the solution.
Does every circle intersects every other circle???
I did a similar thing but I didn't understand how you got the formula ( 2 1 0 0 0 ) + ( 1 1 0 0 0 ) + ( 0 1 0 0 0 ) . Could you explain how you got that formula please? Thanks
Log in to reply
This is a famous problem in combinatorics, look up: "Number of Regions N Lines Divide Plane"
consider the common point to be a line segment the circles can then be considered triangles of equal height (as Calvin sir pointed out below this is because the circles have equal radii) on the line segment.(this is sort of like using mercator's projection).
then drawing we can easily see that no of regions for n circles.
(
∑
i
=
1
n
i ) +1=n(n+1)/2+1 .
the image below for n=5 should make my point clearer.
putting n=1000 we have the answer as 1000(1001)/2+1.
=500501
You might have to be careful justifying that the triangles are the same height. The fact that the circles are congruent comes into play. If the circles were forced to be of different radius, then it might be possible that the maximum cannot be achieved, because of the way all of them need to intersect with each other.
Let the number of regions formed by n circles be F ( n ) for all natural numbers n .
If there're n + 1 circles, there are F ( n + 1 ) regions.
We will count another way.
For each ( n + 1 ) t h circle created, the ( n + 1 ) t h circle will create more regions on n circles. which has F ( n ) regions, by creating on each n inside regions and 1 outside region, total F ( n ) + ( n + 1 ) regions. We'll list all the cases that regions aren't maximized and all the solutions.
Figure 1
Figure 2
The number of regions of n + 1 circles is F ( n + 1 ) regions, and we counted another way we get F ( n ) + ( n + 1 ) regions.
Therefore, F ( n + 1 ) = F ( n ) + ( n + 1 ) .
Which means F ( n ) is a triangular number and a constant!
i.e. F ( n ) = 2 n ( n + 1 ) + c .
Since F ( 1 ) = 2 , we get c = 1 .
Therefore, F ( n ) = 2 n ( n + 1 ) + 1 .
Plug in n = 1 0 0 0 we get F ( 1 0 0 0 ) = 5 0 0 5 0 1 . ~~~
When you draw first circle on a plane, it divides the it in 2 regions. Then second circle divides it in 4 regions, the third in 7, fourth in 11, fifth in 16 and so on.. So it forms a second order Arithmetic Progression : 2,4,7,11,16,22,.... Whose 1000th term will be the required answer.
The primary Arithmetic Progression in this is 2,3,4,5,6,...., 999. Find sum of this = 500499 and add the first term of the second orde progression to get 500501.
P.S. : looks like a very crude way of solving but it worked! I'd love if someone adds more explaination to it..
When we draw the first circle, we form 1 region and cross 0 existing circles. When we draw the second circle, we form 1 more region and cross 1 existing circle. While crossing this existing circle, we divide it into 2 regions region. When we draw the third circle, we form 1 more region and cross 2 existing circles. When we cross those 2 existing circles, we divide them in once more and create 2 new regions.
From this, it becomes clear that every time we cross an existing circle, we make a new region and drawing the circle itself creates a new region. (If you draw it out, you'll see immediately) This means that when we draw the nth circle, we make 1 region and cross n-1 existing circles to make a total of n regions.
Now sum from 1 to 1000 and add 1 for the region outside the circles to get 500501. Note that none of the circles can be drawn at a 180 degree angle to another circle because that means that the circle did not cross the circle 180 degrees from it. For example, the red circle and the teal circle in the picture from the problem never cross and form 2 regions instead of 3.
Circles | Regions |
1 | 2 |
2 | 4 |
3 | 7 |
4 | 11 |
4 | 16 |
Let n be number of circles
U n = 2 1 n 2 + 2 1 n + 1
1000 circles
U 1 0 0 0 = 2 1 ( 1 0 0 0 ) 2 + 2 1 ( 1 0 0 0 ) + 1 = 5 0 0 5 0 1
Problem Loading...
Note Loading...
Set Loading...
I really like this problem, and here is my solution. It is most likely not going to be the solution that you find.
Invert about the point P , using a circle C whose radius is equal to the diameter of the congruent circles. The point P goes to the point at infinity. Hence, all of these circles transform into lines. These lines will be tangential to the circle C .
As an example, I have drawn 3 circles (blue, red, green) that pass through a common point P. We invert with respect to the black circle, to obtain the corresponding colored lines.
Since no set of 3 congruent circles can pass through the same 2 points, we know that no 3 lines (after inversion) are concurrent. Hence, if no 2 (inverted) lines are parallel, we will have ( 2 1 0 0 0 ) + ( 1 1 0 0 0 ) + ( 0 1 0 0 0 ) regions.
Inverting back, we see that this is the same number of regions that the circles are cut into.
Corollary: If every pair of circles intersect in their interior, then the number of regions is 500501.