Administrator
|
Ritu,
Think about it in this way:
First you arrange 1, 2, ... , 2n in a row. And then pair the ones in this way: the first two in the row are paired together, third and forth are paired together, fifth and sixth are together and so on. There are (2n)! arrangements.
So, if 2n = 4, We know how to list out those 2n! orderings.
Now all the orderings listed below represent the same matching so they should be counted as one:
12 - 34 34 - 12
12 - 43 43 - 12
21 - 34 34 - 21
21 - 43 43 - 21
The above list of 8 orderings represent the same matching.
So, the number 2n! needs to be adjusted for two types: First, for a given sequence of pairs, the members of a pair can be ordered in 2 ways and hence with n pairs, the number needs to be divided by 2^n. Second, there are n! ways in which pairs can be arranged. So the number needs to be divided further by n!.
And hence, the number: (2n)!/(n!(2^n)) distinct matchings.
|