Maths Olympiad Prep

Track / Stage 7 / 186 of 300 #1586 of 1964

Problem 1586

National olympiad second round; IMO P1/P4
Combinatorics Difficulty 7.3 Prove it

3n3n lines are drawn on the plane (n>1n > 1), such that no two of them are parallel and no three of them are concurrent. Prove that, if 2n2n of the lines are coloured red and the other nn lines blue, there are at least two regions of the plane such that all of their borders are red.

Note: for each region, all of its borders are contained in the original set of lines, and no line passes through the region.

This one wants a proof. Work it on paper, then read the official solution and mark yourself. Be honest about it: the record is only any use to you if it is.

Official solution

1. Counting the Total Number of Regions:
We start by determining the total number of regions created by 3n3n lines in the plane. The formula for the number of regions RR created by LL lines, where no two lines are parallel and no three lines are concurrent, is given by:
R=(L2)+(L1)+1=L(L1)2+L+1 R = \binom{L}{2} + \binom{L}{1} + 1 = \frac{L(L-1)}{2} + L + 1
For L=3nL = 3n, this becomes:
R=3n(3n1)2+3n+1=9n23n2+3n+1=9n22+3n2+1 R = \frac{3n(3n-1)}{2} + 3n + 1 = \frac{9n^2 - 3n}{2} + 3n + 1 = \frac{9n^2}{2} + \frac{3n}{2} + 1

2. Defining Good and Bad Regions:
A region is considered "good" if all of its borders are red lines. Conversely, a region is "bad" if at least one of its borders is a blue line. We need to count the number of bad regions to determine the number of good regions.

3. Counting Bad Regions:
Each blue line intersects with the other 3n13n - 1 lines, creating 3n3n segments. Each segment touches exactly two regions, making them bad regions. Since there are nn blue lines, the total number of bad regions is:
n3n2=6n2 n \cdot 3n \cdot 2 = 6n^2

4. Adjusting for Overcounting at Intersections:
When two blue lines intersect, they create four regions around the intersection point. Each intersection is counted twice in the previous step, so we need to subtract these overcounted regions. The number of intersections between nn blue lines is:
(n2)=n(n1)2 \binom{n}{2} = \frac{n(n-1)}{2}
Each intersection affects four regions, so we subtract:
4n(n1)2=2n(n1) 4 \cdot \frac{n(n-1)}{2} = 2n(n-1)
Therefore, the adjusted number of bad regions is:
6n22n(n1)=6n22n2+2n=4n2+2n 6n^2 - 2n(n-1) = 6n^2 - 2n^2 + 2n = 4n^2 + 2n

5. Calculating the Number of Good Regions:
The number of good regions is the total number of regions minus the number of bad regions:
Good regions=(9n22+3n2+1)(4n2+2n) \text{Good regions} = \left( \frac{9n^2}{2} + \frac{3n}{2} + 1 \right) - (4n^2 + 2n)
Simplifying this expression:
Good regions=9n22+3n2+14n22n=9n228n22+3n24n2+1=n22n2+1 \text{Good regions} = \frac{9n^2}{2} + \frac{3n}{2} + 1 - 4n^2 - 2n = \frac{9n^2}{2} - \frac{8n^2}{2} + \frac{3n}{2} - \frac{4n}{2} + 1 = \frac{n^2}{2} - \frac{n}{2} + 1

6. Verifying the Minimum Number of Good Regions:
For n2n \geq 2, we need to check if the number of good regions is at least 2:
n22n2+12 \frac{n^2}{2} - \frac{n}{2} + 1 \geq 2
Simplifying:
n2n+222    n2n+24    n2n20 \frac{n^2 - n + 2}{2} \geq 2 \implies n^2 - n + 2 \geq 4 \implies n^2 - n - 2 \geq 0
Factoring the quadratic:
(n2)(n+1)0 (n-2)(n+1) \geq 0
Since n>1n > 1, the inequality holds for n2n \geq 2.

Therefore, there are at least two regions of the plane such that all of their borders are red.

Source: NuminaMath-1.5, licensed Apache-2.0. Statement and solution reproduced as published; topic, difficulty and ordering added by this site.