How many different ways are there to choose of $n$ subsets $\{i,j\},$ each of length $2,$ from $[2n]:= \{1,2,3,\ldots, 2n \}$ ? So for example for $n=25,\{ \{1,2\}, \{3,4\}, \{5,6\}, \ldots, \{49,50\} \} $ is one such way; $\{ \{1,50\}, \{2,49\}, \{3,48\}, \ldots, \{25,26\} \} $ is another.
My solution (for $n=50$) is this: Start with the set containing the number $n_1=1.$ There are $49$ numbers to choose from to pair up with $n_1:$ call this chosen number $n_2.$ Next, let $n_3$ be the least remaining number from $[2n]\setminus \{n_1,n_2\}.$ There are $47$ numbers we can choose to pair up with $n_3.$ Choose one and call it $n_4.$ Next, let $n_5$ be the least remaining number from $[2n]\setminus \{n_1,n_2, n_3,n_4\}.$ There are $45$ numbers we can choose to pair up with $n_5.$ Choose one and call it $n_6.$ And so on. We have found all possible different ways to choose $n$ subsets each of length $2,$ from $[2n],$ each way is done exactly once: this is due to the fact that $n_1<n_3<n_5<\ldots< n_{49};$ if for any $k,\ n_{2k+1}<n_{2k-1},$ then when $n_{2k-1}$ was chosen, it could have been chosen to be the number $n_{2k+1}<n_{2k-1},$ not $n_{2k-1},$ so $n_{2k-1}$ was not chosen to be the least remaining number from $[2n]\setminus \{n_1,n_2,\ldots n_{2k-2}\},$ a contradiction. So (by the product rule of counting) the solution is $49 \times 47 \times \ldots \times 3 \times 1.$
My questions are:
$(i)$ is my solution correct?
$(ii)$ is my solution missing any details or could the explanation be improved [in particular my explanation of uniqueness]? Do I need to mention PHP somewhere?
$(iii)$ are there any alternative solutions to this problem?
We can choose a pair $25$ times and then order them in $25!$ ways so the answer can also be counted as $\frac{\binom{50}{2} \cdot \binom{48}{2} \cdot … \cdot \binom{2}{2}}{25!}$ which is obviously equal to your answer:
$$\frac{\binom{50}{2} \cdot \binom{48}{2} \cdot … \cdot \binom{2}{2}}{25!}=\frac{(50/2 \cdot 49)\cdot(48/2 \cdot 47)\cdot … \cdot (2/2 \cdot 2)}{25!}=$$
$$=\frac{(49 \cdot 47\cdot … \cdot 1) \cdot 25!}{25!} = 49 \cdot 47\cdot … \cdot 1.$$