We want to prove that nχ(G)χ(G)(n+1)24.

I think it is clear that for the upper bound, we want to prove χ(G)+χ(G)n+1 instead. The bound above is implied from AM-GM.

Lower Bound

We color each vertex with a pair (a,b), the color in G and G respectively. The total number of such pairs is clearly χ(G)χ(G). If we have χ(G)χ(G)<n, by pigeon hole we would find two vertices with the same pair of colors. This is a contradiction.

Upper Bound (Proof 1)

This was my proof 2 years ago. It is the ugliest proof out of the 3 given below.

Lemma 1: We can partition G into empty graphs Vi with the additional constraint that for all i<j and v1Vj, there exists some v2Vi such that v1 and v2 are connected.

Proof of Lemma 1: We will algorithmically construct this partition. Start with Vi being the singleton sets endowed with some arbitrary ordering. If there exists (i,j,v1) that does not satisfy the constraint, then we are allowed to delete v1 from Vj and add it to Vi. The new partition will satisfy the property that all components are empty graphs.

Then our algorithm will evantually terminate. Define the potential as the sum of the index of Vi where each vertex is contained. Initially our potential is n(n+1)2. Each operation will strictly decrease the potential. As for empty sets of Vi, just delete them at the end.

Let there be k components in our above partition into empty graphs. Then we can construct a partition of G into nk+1 cliques Uj, which is a nk+1 coloring of G.

Start with Uj being the singleton sets. For each i=2 to k, we will pick an arbitrary vertex vVi and then merge it with some other component in Ui that is entirely in V1V2Vi1.

Consider the components of Uj inside V1V2Vi1. It is easy to see that (Uj1)=i2. Therefore, since v has at least i1 vertices to V1V2Vi1 (at least one to each component), there exists a component of Uj where all the vertices are connected to v. So we merge v with that component.

Upper Bound (Proof 2)

This proof was given in https://www.jstor.org/stable/2306658 in 1956.

We proceed by induction on single vertices.

Suppose our graph has size n. We want to prove that χ(G)+χ(G)n+1.

If n=1, obviously χ(G)=χ(G)=1.

Otherwise, if n>1, pick some arbitrary vG and consider H=Gv.

Case 1: χ(H)+χ(H)n1, choose new colors for v in both G and G.

Case 2: χ(H)+χ(H)=n, notice that we only need to choose a new color for v in G if the degree of v is at least χ(H) in G. Ditto for G and χ(H). But, the total degree of v in G and G is n1. The degree of v cannot be both at least χ(H) and χ(H) in both G and G respectively. So we only need to choose a new color for v in one of G or G.

Upper Bound (Proof 3)

This proof was given by Anton Trygub. I think it is the best proof.

Lemma 2: If χ(G)c, then we can find an induced subgraph HG such that mindeg(H)c1.

Proof of Lemma 2: We will prove the contrapositive. Suppose for all induced subgraphs HG, we can find a vertex that such that mindeg(H)<c1. Then we can produce an ordering v1,v2,,vn of the vertices of G such that vi has at most c2 edges in v1,v2,,vi1. The construction is to go from i=n to 1 and set vi as the vertex with minimum degree and delete it from G. A greedy coloring of vertices from i=1 to n gives us the desired (c1)-coloring.

Now, suppose that there is a certificate for the fact that χ(G)k+1 and χ(G)nk+1 for some k. The graph H1G with mindegG(H1)k has at least size k+1. Similarly, the graph H2G with mindegG(H2)nk has at least size nk+1.

Therefore, there is a vertex v that is in H1H2. This vertex has degree at least k in G and degree at least nk in G. So the total degree of v is at least n. Contradiction.

Now, it seems as though this proof is non-constructive but we can easily make it constructive. For G and G we will run our algorithm in lemma 2 to find a greedy coloring by repeatedly deleting the vertex with the minimum degree. Then we have just proved that if this strategy produces a coloring that uses too many colors, we have a contradiction.


<
Previous Post
Mala Chicken McCrispy
>
Next Post
The Devil’s Algorithm