Maths Olympiad Prep

Library / /16 of 24

Combinatorics Difficulty 5.6 AIME, harder Prove it United States

Problem:

Call a simple graph GG quasi-colorable if we can color each edge blue, red, green, and white such that
- for each vertex vv of degree 33 in GG, the three edges containing vv as an endpoint are either colored blue, red, and green, or all three edges are white,
- not all edges are white.
A connected graph GG has aa vertices of degree 44, bb vertices of degree 33, and no other vertices, where aa and bb are positive integers. Find the smallest real number cc so that the following statement is true: "If a/b>ca / b > c, then GG is quasi-colorable."

Solutions — 2

Solution 1

Solution:

Consider a graph GG such that ab>14\frac{a}{b} > \frac{1}{4}. Note that the number of edges is 4a+3b2\frac{4a + 3b}{2}. Additionally, if any two vertices of degree 44 are adjacent, we can simply color that edge red and every other edge in GG white to get a valid quasi-coloring. Thus, suppose no two vertices of degree 44 are adjacent. Then, consider the subgraph GG' resulting from removing all vertices of degree 44. Note that GG' has 4a+3b24a=3b4a2<3bb2=b\frac{4a + 3b}{2} - 4a = \frac{3b - 4a}{2} < \frac{3b - b}{2} = b edges. Thus, GG' has fewer edges than vertices, which means that one of its connected components must be a tree TT. In this tree TT, we can just select some arbitrary vertex vv, and perform a breadth-first search on TT, greedily coloring the edges as we go along. What this means is that we partition the vertices of TT into disjoint subsets S0={v},S1,S2,S_0 = \{v\}, S_1, S_2, \ldots, where SjS_j contains all vertices of TT whose distance to vv is exactly jj, and then we color edges between S0S_0 and S1S_1, and then greedily color the edges between S1S_1 and S2S_2, and so on. Once we color all the edges in TT, we can color the edges between vertices in TT and the vertices of degree 44 appropriately, and color the remaining edges white to get a valid quasi-coloring.

To show that c=14c = \frac{1}{4} is indeed the smallest possible solution, consider the graph shown below. This graph is not quasi-colorable (one can see that coloring the tails of this graph is impossible).

Figure 1

If there are NN vertices of degree 44, there are 4N+104N + 10 vertices of degree 33. Since N4N+1014\frac{N}{4N + 10} \rightarrow \frac{1}{4} as NN \rightarrow \infty, we have that for each value c<14c < \frac{1}{4}, one can find a graph with a=N0a = N_0 vertices of degree 44 and b=4N0+10b = 4N_0 + 10 vertices of degree 33 such that ab=N04N0+10>c\frac{a}{b} = \frac{N_0}{4N_0 + 10} > c.

Solution 2

Solution:

Consider a graph GG such that ab>14b<4a\frac{a}{b} > \frac{1}{4} \Longleftrightarrow b < 4a. Note that the number of edges is 4a+3b2\frac{4a + 3b}{2}. For each edge ee in the graph, create a variable xex_e in F7\mathbb{F}_7. Then, for each vertex vv of degree 33, if the edges incident with vv are e1,e2,e3e_1, e_2, e_3, then consider the polynomial
Pv=xe12+xe22+xe32 P_v = x_{e_1}^2 + x_{e_2}^2 + x_{e_3}^2
in F7\mathbb{F}_7. There are bb such polynomials, each with total degree 22. Thus, since b<4ab < 4a, we know that the sum of the total degrees over all polynomials, 2b2b, is less than the total number of variables, 4a+3b2\frac{4a + 3b}{2}. By Chevalley's Theorem, it follows that there exists a nontrivial solution to the system Pv0(mod7)P_v \equiv 0 \pmod{7} for all vertices vv of degree 33. Consider one such solution. For each edge ee, if xe0(mod7)x_e \equiv 0 \pmod{7}, then color edge ee white. If xe21(mod7)x_e^2 \equiv 1 \pmod{7}, color edge ee blue. If xe22(mod7)x_e^2 \equiv 2 \pmod{7}, color edge ee red. If xe24(mod7)x_e^2 \equiv 4 \pmod{7}, color edge ee green. It is not hard to see that this is a valid quasi-coloring.

To show that c=14c = \frac{1}{4} is indeed the smallest possible solution, we can use the graph shown in the previous solution.

Want a route through all this instead of an archive? The track puts 2,000 problems in a working order, from AMC 10 level to the IMO shortlist.

Source: MathNet, licensed CC-BY-4.0. Statement reproduced verbatim; metadata (topic, difficulty) added by this project.