We want to prove that .
I think it is clear that for the upper bound, we want to prove instead. The bound above is implied from AM-GM.
Lower Bound
We color each vertex with a pair , the color in and respectively. The total number of such pairs is clearly . If we have , 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 into empty graphs with the additional constraint that for all and , there exists some such that and are connected.
Proof of Lemma 1: We will algorithmically construct this partition. Start with being the singleton sets endowed with some arbitrary ordering. If there exists that does not satisfy the constraint, then we are allowed to delete from and add it to . 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 where each vertex is contained. Initially our potential is . Each operation will strictly decrease the potential. As for empty sets of , just delete them at the end.
Let there be components in our above partition into empty graphs. Then we can construct a partition of into cliques , which is a coloring of .
Start with being the singleton sets. For each to , we will pick an arbitrary vertex and then merge it with some other component in that is entirely in .
Consider the components of inside . It is easy to see that . Therefore, since has at least vertices to (at least one to each component), there exists a component of where all the vertices are connected to . So we merge 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 . We want to prove that .
If , obviously .
Otherwise, if , pick some arbitrary and consider .
Case 1: , choose new colors for in both and .
Case 2: , notice that we only need to choose a new color for in if the degree of is at least in . Ditto for and . But, the total degree of in and is . The degree of cannot be both at least and in both and respectively. So we only need to choose a new color for in one of or .
Upper Bound (Proof 3)
This proof was given by Anton Trygub. I think it is the best proof.
Lemma 2: If , then we can find an induced subgraph such that .
Proof of Lemma 2: We will prove the contrapositive. Suppose for all induced subgraphs , we can find a vertex that such that . Then we can produce an ordering of the vertices of such that has at most edges in . The construction is to go from to and set as the vertex with minimum degree and delete it from . A greedy coloring of vertices from to gives us the desired -coloring.
Now, suppose that there is a certificate for the fact that and for some . The graph with has at least size . Similarly, the graph with has at least size .
Therefore, there is a vertex that is in . This vertex has degree at least in and degree at least in . So the total degree of is at least . Contradiction.
Now, it seems as though this proof is non-constructive but we can easily make it constructive. For and 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.