I yammer a wee bit too much, feel free to skip to TLDR unless you want more background as to why I care about this problem.
I was just thinking that it would be a fun to figure out the best 5 players in a team of 10 as this tournament only allows for 5 players.
Obviously, I could just go for an individually based analysis of each players merit, but I thought a competition of how many wins can each player get when playing on all possible team combinations would be cool!
As a programmer my first solution would be to simply create a small algorithm that got every possible combination and then sorted them by name and compared to find only the unique entries.. But that seems lazy.. I know the number of teams is probably going to be 60+ unqiue teams though so doing by hand is just asking for trouble (fairly sure maximum possible combinations of five is 5^10 according to stackoverflow before I find the unique ones) so I will probably have to rely on this bruteforce solve..
But it got me thinking... Surely there's a mathematical way to figure out the number of possible unique (order not mattering) teams given 5 players per team, 10 people and thus 2 teams.
TLDR:
I was wondering if anyone knows the proper way to solve this problem: You have 10 players and 2 teams. How many unique team parings can you make in which ordering doesn't matter.
I did some googling but I couldn't find any resources on this :(. A Link to an article/paper on the math behind this will entertain me enough, but if it's simple enough to be explained as an answer to this question directly with working... That would rock..