edited by
4,683 views
24 votes
24 votes

It is required to divide the $2n$ members of a club into $n$ disjoint teams of $2$ members each. The teams are not labelled. The number of ways in which this can be done is:

  1. $\frac{\left ( 2n \right )!}{2^{n}}$
  2. $\frac{\left ( 2n \right )!}{n!}$
  3. $\frac{\left ( 2n \right )!}{2^n . n!}$
  4. $\frac{n!}{2}$
  5. None of the above
edited by

6 Answers

1 votes
1 votes
This problem counts the number of perfect matchings in complete graph on 2n vertices. You can list down the numbers (vertices) as follows and " - " between the numbers indicate edges. The following arrangement represents one of the perfect matchings in complete graph on 2n vertices. If we permute the following matching edges in n! ways the matching doesnt change. Also, the matching remains unchanged if the vertices of a matching edge are permuted. Hence, there are (2n)! / 2^n * n! distinct perfect matchings.

1-2  3-4 ............................................. (2n-1) - (2n)
0 votes
0 votes
It is similar to number of ways you can do maximum matching in a complete bipartite graph

Shall I need to further say anything?
;)
Answer:

Related questions

19 votes
19 votes
4 answers
2
go_editor asked Dec 21, 2016
4,149 views
How many distinct ways are there to split $50$ identical coins among three people so that each person gets at least $5$ coins?$3^{35}$$3^{50}-2^{50}$$\binom{35}{2}$$\bino...
22 votes
22 votes
5 answers
4