In wikipedia FKT algorithm is given for planar graphs. Not anything for complete graphs. I need to find the number of perfect matchings in complete graph of six vertices.
How to find the number of perfect matchings in complete graphs?
-
1Here is an alternate way to do this via recursion. Let $a_n$ denote the number of perfect matchings in $K_{2n}$. Then clearly, $a_1 = 1$. Now in $K_{2n}$ (where $n \geq 2$), pick any vertex $u$, you can match it with $(2n-1)$ vertices. After matching $u$, you are left with $2n-2$ vertices. Thus, $a_n = (2n-1)a_{n-1}$. So, $a_n = (2n-1)(2n-3)\dots(1)$. – 2018-05-07
6 Answers
It's just the number of ways of partitioning the six vertices into three sets of two vertices each, right? So that's 15; vertex 1 can go with any of the 5 others, then choose one of the 4 remaining, it can go with any of three others, then there are no more choices to make. $5\times3=15$.
-
2@awell, I think $p(m;a_1,\dots,a_r)$ just means number of partitions of$a$set of size $m$ into $r$ subsets, one of size $a_1$, ..., one of size $a_r$. The formula for that is $m!/((a_1!)\cdots(a_r)!)$. It comes from repeated application of the formula for the number of combinations of $m$ things taken $a$ at a time, $m!/(a!(m-a)!)$. – 2014-12-11
Gerry is absolutely correct. For 6 vertices in complete graph, we have 15 perfect matching. Similarly if we have 8 vertices then 105 perfect matching exist (7*5*3).
If you just want to get the number of perfect matching then use the formula $\dfrac{(2n)!}{2^n\cdot n!}$ where $2n =$ number of vertices in the complete graph.
Detailed Explaination:- You must understand that we have to make n different sets of two vertices each.
First take a vertex . Now we have (2n-1) ways to select another vertex to make the pair. Now to make another pair we take a vertex and now we have (2n-3) ways to select another vertex. This is because we have already used 2 vertices in first pair and one vertex is currently in use to make 2nd pair. Similarly for 3rd pair we will have (2n-5) ways . When we are making nth pair we will have just one way.
Multiplying all we get (2n-1)(2n-3) ...........1 Now multiply and divide it by even terms as follows ((2n)(2n-1)(2n-2)(2n-3)..................1)/((2n)(2n-2)(2n-4).....*2)
now the numerator will become (2n)! and take 2 common from each term in denominator . You will get 2^n * (n*(n-1)(n-2).......1) Hence the denominator will become 2^n * n! hence we get the formula as (2n)!/(2^n*n!). Hope this will help.
This problem is equivalent to finding set of $n$ disjoint pairs. Lets say there are $2n$ vertices then $\frac{2n}{2^n}$ is the number of ways you can have these $n$ pairs. i.e, ways to make disjoint pairs out of these. E.g, If you had vertices $1,2,3,4$ then one of the possible way to make set out of this would be $\{(1,2),(3,4)\}$. Finally, as set is an unordered collection so final solution becomes $\frac{2n}{2^n*n!}$.
Gerry was correct (sort of) in his first statement, saying that it is the number of ways to partition the six vertices into three sets of two. However, the answer of number of perfect matching is not 15, it is 5. In fact, for any even complete graph G, G can be decomposed into n-1 perfect matchings. Try it for n=2,4,6 and you will see the pattern.
Also, you can think of it this way: the number of edges in a complete graph is [(n)(n-1)]/2, and the number of edges per matching is n/2. What do you have left for the number of matchings? n-1.
-
0I think these are all perfect matchings for 6: 12-34-56, 12-35-46, 12-36-45, 13-24-56, 13-25-46, 13-26-45, 14-23-56, 14-25-36, 14-26-35, 15-23-46, 15-24-36, 15-26-34, 16-23-45, 16-24-35, 16-25-34. That's 15, not 5. – 2014-12-13