Suppose you have a class of 11 students . I want to split the class into two groups five different ways, minimizing the number of times that any two students are in the same group.
In more mathematical terms, I have a set of 11 elements $S = \{a, b, c, \dots, k\}$, or $S = \{x_1, x_2, x_3, \dots, x_{11}\}$. I want to select five partitions $A_k$ and $B_k$ that minimize the expression
$$ \max_{1 \le i < j \le 5} \sum_{k=1}^{5} f(x_i,x_j) $$
where
$$ f(x_i, x_j) = \begin{cases} 1 & \quad \text{if } x_i,x_j \in A_k \\ 1 & \quad \text{if } x_i,x_j \in B_k \\ 0 &\quad \text{else} \end{cases} $$
for any two elements $x_i$ and $x_j$.
Is there an easy selection process? An enumeration approach creates ${11 \choose 5} = 462$ partitions into two sets. Taking the first set as a fixed point without loss of generality, then there are ${461 \choose 4} = 1857486555$ possible sets of 5 partitions.
One guesswork approach: remove $x_{11}$ from the set to create an even number of elements. Offset by numbers coprime to each other and to 10: 1, 3, 7
$$ \begin{align*} \{x_1, x_2, x_3, x_4, x_5\} & \{x_6, x_7, x_8, x_9, x_{10}\}\\ \{x_1, x_4, x_7, x_{10}, x_2\} & \{x_3, x_5, x_6, x_8, x_9\}\\ \{x_1, x_8, x_5, x_2, x_9\} & \{x_3, x_4, x_6, x_7, x_{10}\}\\ \end{align*} $$
For the next try an offset of two:
$$ \begin{align*} \{x_1, x_3, x_5, x_7, x_9\} & \{x_2, x_4, x_6, x_8, x_{10}\} \end{align*} $$
For the last, grab-bag of things that look like they haven't paired with $x_1$:
$$ \begin{align*} \{x_1, x_3, x_6, x_8, x_{10}\} & \{x_2, x_4, x_5, x_7, x_9\} \end{align*} $$
The maximum overlap here (I believe) is 4, an example being $\{x_6, x_{10}\}$
$$\{A,B,C,D,E,F\}\{G,H,I,J,K\}$$ Starting with this first partition, we want to choose the second partition so that no subset with $4$ elements is repeated. We must therefore swap exactly $3$ elements between the two set. All such swaps are identical at this point, so we can fix the second partition as: $$\{A,B,C,G,H,I\}\{D,E,F,J,K\}$$ Next, we'll want to split the $\{A,B,C\}$, $\{D,E,F\}$, and $\{G,H,I\}$ subsets in the remaining $3$ partitions. We'll take $1$ from $\{A,B,C\}$ and two from each of $\{D,E,F\}$ and $\{G,H,I\}$ to avoid repeating a $4$-element subset. The final result is: $$\{A,B,C,D,E,F\}\{G,H,I,J,K\}\\ \{A,B,C,G,H,I\}\{D,E,F,J,K\}\\ \{A,D,E,G,H,J\}\{B,C,F,I,K\}\\ \{B,D,F,G,I,J\}\{A,C,E,H,K\}\\ \{C,E,F,H,I,J\}\{A,B,D,G,K\}$$ There are $15$ pairs with $1$ occurrence, $10$ with $2$ occurrences, and $30$ with $3$ occurrences. This is the best I've been able to achieve, and the only way that avoids having $4$ occurrences of any pair.