Choosing equally spaced points on a circle

combinatoricsgraph theory

Consider the sequence $A_1,A_2,A_3, …, A_{2n-2}, A_{2n-1}, A_{2n}$ of $2n$ points, spaced equally and clockwise on a circle.

For which $n \geq 2$ can you choose $n$ pairs of points $(A_i, A_j)$ such that every point is part of exactly one pair and every distance from $\{0,1, …, n-1\}$ is covered by some pair $(A_i, A_j)$.
A distance of a pair is defined by the smallest number of points that lie between $A_i$ and $A_j$.

For example, $n=4$ works:
The sequence beeing $A_1, A_2, A_3, A_4, A_5, A_6, A_7, A_8$, we can choose pairs $(A_2, A_3), (A_6, A_8), (A_4, A_7), (A_1, A_5)$ with distances $0,1,2,3$ respectively, satisfying the condition.

Best Answer

Thanks to @C.C. idea about a connection with graph theory, I have first searched about graceful labeling of graphs and found A Dynamic Survey of Graph Labeling by Joseph A. Gallian, and there, on section 2.5, "Disconnected Graphs", a reference to Skolem Sequence, which is exactly what you are looking for.

The 1957 paper On certain distributions of integers in pairs with given differences by Th. Skolem proves that a Skolem sequence of length $2n$ exists if and only if $n \equiv 0,1 \pmod 4$.

Here I report the proof that no sequence can exist with $n \equiv 2,3 \pmod 4$. Proving that a sequence always exists for $n \equiv 0,1 \pmod 4$ is longer (see the article).

Let $(a_k,b_k)$, $k=1,\ldots,n$ be the chosen couples in $(1,2,\ldots,2n)$ with $a_k \lt b_k$. Therefore:

$$\sum_{k=1}^n (b_k-a_k) = \sum_{k=1}^n k = \frac{n(n+1)}{2}$$

and:

$$\sum_{k=1}^n (b_k+a_k) = \sum_{k=1}^{2n} k = n(2n+1)$$

adding the two equations yields:

$$\sum_{k=1}^n b_k = \frac{n(5n+3)}{4}$$

which is an integer only when $n \equiv 0,1 \pmod 4$.

Related Question