[Math] self-complementary graph: Number of Edges

combinatoricsgraph theory

I know the number of edges for a self-complementary graph is $\frac{n(n-1)}{4}$, but how do I derive this?

Best Answer

The number of edges in a complete graph on n vertices $|E(K_{n})|$ is $^{n}C_{2}=\frac{n(n-1)}{2}$.

If a graph $G$ is self complementary we can set up a bijection between its edges, $E$ and the edges in its complement, $E'$. Hence $|E|=|E'|$.

Since the union of edges in a graph with those of its complement form the edges of a complete graph $K_{n}$ we have $|E|+|E'|=|E(K_{n})|$.

Since $|E|=|E'|$ we have $2|E|=\frac{n(n-1)}{2}$ and dividing by 2 completes the proof i.e. $|E|=\frac{n(n-1)}{4}$.

Related Question