A circle is drawn and 17 distinct points are chosen on it.
Each pair of these points is connected by a chord (136 line segments in total).
The points are chosen in such a way that no more than two chords intersect at the same point.
These chords divide the interior of the circle into many regions.
How many regions are there?
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.
What a great question... At first I was convinced it was just 2 n − 1 , so when I got to 31, I was sure I had mis-counted... But, alas, no! :0) (+1)
The Moser's Problem is a classic example of "unproved" induction!
Do you know a "one-idea" approach to establish that the number of regions is equal to the number of lines + the number of intersections + 1?
I give a solution using Euler's formula.
The number of vertices v = number of chord intersections + number of points on circumference = ( 4 n ) + n .
The degree of each point on the circle is = (n-1) + 2 = n + 1
The degree of each intersection point = 4
Also note that the number of edges e = 2 d e g r e e × n u m b e r o f v e r t i c e s
∴ e = 2 n × ( n + 1 ) + ( 4 n ) × 4 .
Using Euler's Formula : v − e + f = 2 , where f denotes the number of faces in the graph(i.e., one more than the number we are after).
∴ F = f − 1 = 1 − ( ( 4 n ) + n ) + ( 2 n × ( n + 1 ) + ( 4 n ) × 4 )
Hence F = 2 4 1 ( n 4 − 6 n 3 + 2 3 n 2 − 1 8 n + 2 4 ) = ( 4 n ) + ( 2 n ) + 1 .
Using this result for the given question with n = 17, it follows that F = 2517.
[This solution is slightly incomplete. It provides a bijection for counting the number of regions.]
Here's the "one-idea" that explains why the number of regions (when maxed out) is equal to " 1 + number of intersections + number of lines (between 2 points)".
Take any configuration. Arrange it so that none of the lines are parallel to the horizontal or vertical, and that none of the points are at the bottom of the circle. For each region, consider the "lowest point".
@Geoff Pilling Here's the nice way to see the bijection.
There is no guarantee that your lowest-point map (from regions to points of interest) is injective.
For instance, if n = 4 and one of the points lies at the bottom of the circle, then that point will be the lowest point of four different regions.
Log in to reply
K, should be fixed now. The tricky part was finding a simple bijection from the lowest point to the corresponding line.
Log in to reply
Yep, that seems to work. When I first started thinking about this problem, I tried a similar approach but ran into this complication. While I thought it should be possible to find a solution of this kind, but I found my approach easier.
I was playing around with this problem quite a bit before I finally realized that the number of regions is equal to the number of lines + the number of intersections + 1, or:
N regions = N lines + N intersections + 1
N lines = 2 n ( n − 1 )
N intersections = 4 n i = 1 ∑ n − 3 i ( n − 2 − i )
N regions = 2 n ( n − 1 ) + 4 n i = 1 ∑ n − 3 i ( n − 2 − i ) + 1 = 2 1 7 ( 1 7 − 1 ) + 4 1 7 i = 1 ∑ 1 7 − 3 i ( 1 7 − 2 − i ) + 1 = 2 5 1 7
Do you know how to establish that the number of regions is equal to the number of lines + the number of intersections + 1?
There is a very nice bijection, similar to the regions of n-lines in plane problem.
Log in to reply
I just started drawing lines, and I noticed that each time I started a line I had defined a new region, and any time I crossed another line I added a new region. (and we started with one region)
Problem Loading...
Note Loading...
Set Loading...
We solve the problem generally for N points. It is obvious that if N = 0 , there is only one region. Let C a b stand for the chord drawn from point a to point b .
We build the situation by adding one point at a time. When adding point n , we draw the chords C p n , with 1 ≤ p < n . When ever a chord intersects an existing region, it splits that region in two. Thus the number of regions added is the number of intersections between the new chords and the old regions.
Suppose we are drawing chord C p n . Through how many regions does it pass? Each pair of regions is separated by an existing chord. Thus the number of new regions created by chord C p n is one, plus the number of intersections between C p n and existing chords C a b .
It is not difficult to see that chords C p n and chords C a b intersect precisely if 1 ≤ a < p < b < n .
Thus the number of regions is
1 for the initial circle,
plus the number of chords C p n , with 1 ≤ p < n ≤ N ,
plus the number of chord intersections C p n × C a b , with 1 ≤ a < p < b < n ≤ N .
Thus the total number of regions is 1 + ( N 2 ) + ( N 4 ) . Substitute N = 1 7 and we find 1 + ( 1 7 2 ) + ( 1 7 4 ) = 1 + 1 3 6 + 2 3 8 0 = 2 5 1 7 .
Note: for N = 1 , 2 , 3 , … the numbers of regions are 1 , 2 , 4 , 8 , 1 6 , 3 1 , 5 7 , 9 9 , … This is the unique fourth-degree polynomial defined by f ( n ) = 2 n − 1 for n = 1 , … , 5 . Remarkable!