Our task is to show that 17 points are not enough to guarantee a set of four friends or a set of four strangers. So we need to show that there is a graph of 17 vertices which contains neither.
Seventeen vertices is a lot, and even if we successfully drew such a graph, we would not be able to just look at it to verify it—there would simply be too many edges for us to make sense of.
Instead of drawing a graph, then, we can construct one by defining it in a clever way. Consider a graph of

An easy example
We can now decide which vertices are connected by referring to their labels. For example, consider a graph of 7 vertices. Let’s connect two vertices with a blue edge if and only if they are "3" away from one another on our circle. Since we drew them in a circle, this means that 1 shares an edge with 4, 2 shares an edge with 5, etc. Since we have defined our circle such that vertex 7 appears right before vertex 1, we would also say that 7 shares an edge with 3. This is analogous to modular arithmetic. Here is what our graph looks like with the blue edges:

All other edges should be coloured red. How can we define this without drawing it? Well, two vertices have a blue edge if they are 3 away from one another. That means they don’t have a blue edge if they are 2 away from one another—this edge must be red. Continuing in this way, we get that two vertices share a red edge if and only if they are 1 or 2 away from each other.

Can we do the same for distances of 4, 5, 6, and 7? Well, every node is exactly 7 away from itself, and we aren’t connecting any vertices to themselves, so that one is out of the question. What about 4? Start at any vertex, and go 4 to the right. Now starting at that same vertex, go 3 to the left. You’ll find that you end up at the same destination. Any vertex that is 4 or more away from another vertex is actually a smaller distance away from that same vertex (going in the other direction). So a distance of 4 is equivalent to a distance of 3, in the way we defined this graph. More generally, a distance of

So this gives us a complete graph. Now how can we check for mutual friends or strangers? It would be cumbersome to try to look at the messy knot of edges and seek one out. Instead, we can again refer to how we defined the edges between vertices. Let's say we have 3 mutual strangers (a red triangle). That means that we have three vertices that all share a red edge with one another. Take one of these vertices and call it
We have defined our graph such that vertices only share a red edge if they differ by 1 or 2. That means the three vertices are of form
Similarly we can take

The proof
It's time to make the coup de grace and use this tool to find a graph of 17 vertices that does not contain four mutual friends or strangers. There is a special graph of the type we explored called a Paley graph, defined for graphs with a prime number of vertices (in particular, primes that are 1 greater than a multiple of 4), which specifies how to choose the connection rules.
List all the possible distances between vertices in our labelled circle graph:

Exhausting right? I will admit that this part is best left to a computer. Regardless, we've seen that no matter what three
Must we again suffer this busywork to determine if there are four mutual strangers? The answer, fortunately, is NO! Paley graphs have the remarkable property that they are isomorphic to their complement. What that means is that the graph we draw with red edges will actually be the exact same one as the one with blue edges, just with the vertices moved around. Don't believe me? Think back to the example which showed that R(3,3) >5.

Although you probably didn't know it at the time, this is precisely the Paley graph for

This is actually the exact same graph as the one with the red edges, which we can see now that the vertices are rearranged! A rigorous proof that Paley graphs are self-complementary is a beautiful exercise, and I would strongly recommend it for anyone with a basic understanding of number and group theory. Back to our graph of 17 vertices, then, we know it contains no four mutual friends, and the graph defined by strangers is in fact the same graph (just colored red), so it contains no four mutual strangers! We have now shown that R(4, 4) > 17, which combined with previous results, proves that R(4,4) = 18.
Return to main article

This addition to the article Friends and strangers was sent to us by Alex King. Alex is a fourth-year Mathematics and Computer Science student at the University of Virginia. He hopes to strengthen his passion for mathematics in graduate school, and is currently intrigued by graph theory and abstract algebra.