There are $2n$ players in a chess tournament. The first round consists of pairing the players to participate in $n$ matches with every player playing one match. In terms of $n,$ how many ways can this pairing take place?
The first pair of people can be chosen from $\binom{2n}{2}.$
Since we chose the first pair, the next pair will be chosen from an amount of $\binom{2n-2}{2}.$
This pattern continues till $\binom{2}{2}$ which is for the $n$th pair.
Hence, the pairings will be $$\binom{2n}{2}\cdot\binom{2n-2}{2}\cdot...\cdot\binom{2}{2}.$$
Dividing by $n!$ gets the ways $2n$ people can be chosen to play $n$ games.
How do I simplify this?