Ok so I have N girls and N guys. I need to create a 2's beach volleyball coed tournament (also known as King and Queen style). I want a list (like Joe and Jill versus Donald and Melania...etc.) of all possible unique games, given the following constraints:
- Coed 2's, so 2 members per team, 1 girl and 1 guy
- two teams having the same exact players can only play once against each other (that is a "unique game")
Which formula do I need to use? Here is an example for 2 teams, assuming that one gender is identified by numbers (player 1, player 2...) and the other by letters (player A, player B...)
All possible unique games with N=2:
1A versus 2B
2A versus 1B
All possible unique games with N=3:
1A versus 2B
1A versus 3C
1A versus 2C
1A versus 3B
2A versus 1B
2A versus 3C
2A versus 1C
2A versus 3B
3A versus 2B
3A versus 1C
3A versus 2C
3A versus 1B
1B versus 2C
1B versus 3C
2B versus 3C
2B versus 1C
3B versus 1C
3B versus 2C