I have a list of 6 elements (A...F) that I need to organize into the smallest number of unique two-element combinations (AB, AC, etc) possible so that they form all possible four-element combinations (AB + CD = ABCD). The order of the elements is unimportant and I can use each two-element combination as many times as possible (i.e. AB + CD, but also AB + EF)
I know that:
-There are fifteen possible 4-way combinations and -it should be solvable with 9 two-element combinations
...but I can't figure out conceptually how to generate my list of two-element combinations.
Any ideas on how I could get started on this?
Let's formalize your problem a little:
Given a Universe $U= \{A_1,...,A_n\}$, we're searching for the smallest $C\subseteq \binom{U}{2}$ so that $\binom U 4\subseteq P(C)$.
(Here, $\binom{U}{k} := \{M\subseteq U\mid |M| = k\}$ i.e. $\binom{U}{k}$ consists of all sets of $k$-element subsets of $U$.)
This already gives us a way to brute-force the whole thing:
Note that this is the raw brute-force algorithm. There are many optimizations, both obvious and unobvious to improve this algorithm.