[Math] Basic Combinations and Permutations

combinationscombinatorics

Consider a team of eleven (11) soccer players, all of whom are equally good players and can play any position.

A) The coach wants to form two (2) teams of five (5) from the eleven players on the team for a scrimmage game (i.e., just a small practice game where player positions are not important). The eleventh player will act as the referee. How many ways can the coach divide the team into two teams of five players?

B) The coach wants to test the players to be able to select a captain for the team. Therefore, again the coach wants to form two (2) teams of five (5) from the eleven players on the team for a scrimmage game, with the eleventh player again acting as the referee, but with a small change. The first person chosen for a team of five will be the captain of the team and will have extra responsibilities. For the rest of the players, their roles and positions are not important. How many ways can the coach divide the team into two teams of five players with one captain for each team?

Best Answer

a) Pick who the referee is in $11$ ways. Then among the ten people leftover, one will be the youngest. Pick who the other four members of that player's team is in $\binom{9}{4}$ ways. We get a total of $11\binom{9}{4}=1386$ ways.

b) Pick who the referee is in $11$ ways. Simultaneously pick the two captains in $\binom{10}{2}$ ways. Pick who the other four members of the youngest captain's team is in $\binom{8}{4}$ ways. We get a total of $11\binom{10}{2}\binom{8}{4}=34650$ ways.


Alternate approach:

a) Arrange five a's, five b's, and a c in a line in $\frac{11!}{5!5!1!}$ ways. Have the players go to either team $A$, team $B$, or referee position according to the arrangement of the a's, b's, and c's compared to their names. Now, "forget" which team was actually team $A$ and which team was team $B$ by dividing by two. This gives us $\frac{11!}{5!5!1!}\cdot\frac{1}{2}=1386$ ways.

b) Arrange four a's, four b's, one A, one B, and one C in a line in $\frac{11!}{4!4!1!1!1!}$ ways. The a's will correspond to which players are normal members of team $A$, the A will correspond to the player who is captain for team $A$ etc... Finally, "forget" which team was actually team $A$ and which was team $B$ by dividing by two. This gives us $\frac{11!}{4!4!1!1!1!}\cdot\frac{1}{2}=34650$ ways.

Similarly, one could instead just take the answer to part (a) and then pick who from the youngest person's team is captain and pick who the captain is for the other team, making it so there is $5\cdot5\cdot1386=34650$ ways.