Given positive integers and (), find the minimum constant satisfying this assertion: if is a simple -regular graph (the degree of each vertex is ) with vertices, then each vertex can be coloured one of colours, such that the number of “mono edges” is at most . Here, a mono edge is an edge incident to two vertices of the same colour.
Problem 1996
Official solution
.
First, we prove . Consider a complete graph with any -colouring of the vertices. Suppose that the numbers of vertices coloured by 1, 2, ..., are , respectively. Then
As are integers,
Therefore, the number of mono edges is:
which implies .
Next, we give three proofs that satisfies the problem assertion.
Proof 1
For any -regular graph , it is well known that has a -colouring such that adjacent vertices are of different colours. Divide the colours randomly into groups such that one group contains colours while each of the others contains colours, and for all these divisions, they have equal probabilities. Now change all colours of a group into one colour. For any edge of , initially, it is incident to vertices of different colours; after changing the colours, it is incident to vertices of the same colour, namely, it becomes a mono edge with a probability
Therefore, after changing the colours, the expected number of mono edges is
There must exist an -colouring of such that the number of mono edges is less than or equal to . This verifies the problem assertion.
Proof 2
Suppose that among all -colourings of , the minimum number of mono edges is . Let consist of vertices of . For a permutation of , colour in order (by one of colours) as follows. For a vertex , suppose that in , of neighbouring vertices of appear before . We colour with the colour that appears least frequently among those neighbours (it appears at most times). According to this greedy algorithm, it is guaranteed that
The above inequality holds for any permutation . It suffices to prove, for all permutations, the average of is , so that some permutation gives a desired -colouring. For a vertex , let its neighbours be . Consider : among the relative orders of elements of given by all permutations, appears at position 1, 2, , with equal probability . Hence, as traverses all permutations, the average of is
As a result, the average of is .
Proof 3
For a -regular graph , let be the number of vertices of . Since there are only finitely many -colourings of , there must be one with the minimum number of mono edges, say . We have the following claims on .
Claim 1 For every vertex , has at most neighbours that are in the same colour as ; if this does occur, then has exactly neighbours in each of the colours (we call this a "balanced vertex").
Proof of claim 1 Let be of colour . If there is another colour such that among 's neighbours, the number of vertices in colour is larger than that in colour , then we change the colour of from to . This will reduce the number of mono edges, which is a contradiction. Hence, there are fewest neighbours of in colour (or one of the fewest); as has neighbours, the claim is verified.
Claim 2 Adjacent balanced vertices must be monochromatic.
Proof of claim 2 Let be adjacent balanced vertices, in colour while in colour . Changing to and to , will not be a mono edge, but the numbers of mono edges incident to or will each decrease by 1, a contradiction.
Claim 3 If is not a balanced vertex, is adjacent to balanced vertices which have different colours from , then there are at most mono edges incident to .
Proof of claim 3 Consider the edges between these balanced vertices. As each balanced vertex is adjacent to at most balanced vertices of its colour, in the subgraph of these vertices, the degree of each vertex does not exceed . Now we can choose at least of these balanced vertices such that any two of them are not adjacent (assume that at most vertices can be chosen, then they have or fewer neighbours, , or ). Change them to the colour of . From the properties of balanced vertices, we see that the number of mono edges does not change; however, if the number of mono edges emanating from exceeds , then changing 's colour will reduce the number of mono edges, a contradiction. Therefore, the number of mono edges emanating from does not exceed , and hence there are at most mono edges incident to .
Let be the number of balanced vertices in . There are two situations.
(i) If . By calculating the number of mono edges emanating from each vertex in two ways, we find that the total number of mono edges does not exceed
(ii) If . From Claim 2, it follows that the heterochromatic neighbours of a balanced vertex are never balanced vertices. Thus, the number of edges connecting a balanced vertex and a heterochromatic neighbour is . Now for each non-balanced vertex, consider its heterochromatic balanced (vertex) neighbours: let the numbers be . We have
From Claim 3, the number of mono edges does not exceed
Therefore, as desired.