Let's say I have $2n$ items and I want to designate $n$ pairs, where each pair is unordered. For example, if $n=2$:
$A A B B$
$B B A A$
$A B A B$
$B A B A$
$A B B A$
$B A A B$
I think that's all of them, anyway. I am having trouble figuring out how to count these without overcounting.
I tried a recursive idea: $\binom{2n}{2}$ ways to pick the positions of the $A$s. Then there are $\binom{2n-2}{2}$ ways to pick the positions of the $B$s. And so on. But for large $n$ this seems possibly wrong or too complex.
For $n=3$, I count $90$:
$AABBCC$
$AABCBC$
$AABCCB$
...
$CCBAAB$
$CCBABA$
$CCBBAA$