Open In App

Mathematics | Matching (graph theory)

Improve
Improve
Like Article
Like
Save
Share
Report
Prerequisite – Graph Theory Basics Given an undirected graph, a matching is a set of edges, such that no two edges share the same vertex. In other words, matching of a graph is a subgraph where each node of the subgraph has either zero or one edge incident to it. A vertex is said to be matched if an edge is incident to it, free otherwise. Possible matchings of K_4, here the red edges denote the matching –

Matching Terminology –

Maximal Matching – A matching M of graph G is said to be maximal if on adding an edge which is in G but not in M, makes M not a matching. In other words, a maximal matching M is not a proper subset of any other matching of G. For example, the following graphs are maximal matchings – Adding any edge to any of the above graphs would result in them no longer being a matching. Maximum Matching – A matching M of graph G is said to be maximum if it is maximal and has the maximum number of edges. There may be many possible maximum matchings of a graph. Every maximum matching is a maximal matching but not every maximal matching is a maximum matching. For example, in the first figure G_3 is a maximum matching and in the second figure, the second and third graphs are maximum matchings. Perfect Matching – A matching M of graph G is said to be perfect if every vertex is connected to exactly one edge. Every perfect matching is a maximum matching but not every maximum matching is a perfect matching. Since every vertex has to be included in a perfect matching, the number of edges in the matching must be \frac{|V|}{2} where V is the number of vertices. Therefore, a perfect matching only exists if the number of vertices is even. For example in the first figure, G_3 is a perfect matching. A matching is said to be near perfect if the number of vertices in the original graph is odd, it is a maximum matching and it leaves out only one vertex. For example in the second figure, the third graph is a near perfect matching.
  • Example – Count the number of perfect matchings in a complete graph K_n.
  • Solution – If the number of vertices in the complete graph is odd, i.e. n is odd, then the number of perfect matchings is 0. But if n is even then we can derive a general formula for counting the number of perfect matchings. Since n is even, we can denote it as 2m for some positive integer m. Every vertex is connected to every other vertex in a perfect graph, therefore the degree of each vertex is 2m-1. Out of these 2m-1 edges we have to choose 1 edge to include two vertices. We can choose an edge in 2m-1 ways. Now 2m-2 vertices remain and (2m-2)-1 =  2m-3 edges remain since the edges connected to the already selected vertices cannot be selected because it is a matching. So the number of ways of selecting an edge from 2m-3 edges is 2m-3. We can keep choosing edges in the same way, then by product rule- Number of perfect matchings- (2m-1) * (2m-3) *...*3*1. This can also be written as- =\:\frac{\{(2m-1) * (2m-3) *...*3*1\}*\{(2m) * (2m-2) *...*4*2\}}{\{(2m) * (2m-2) *...*4*2\}} =\:\frac{(2m)!}{\{2^m * (m) * (m-1) *...*2*1\}} =\:\frac{(2m)!}{2^m * m!}} So for a perfect graph with 2m vertices the number of perfect matchings is- =\:\frac{(2m)!}{2^m * m!}}
Bipartite Matching – Matching has many applications in flow networks, scheduling, and planning, graph coloring, neural networks etc. The most common of these is the scheduling problem where there are m tasks which may be completed by n workers. The tasks and workers represent the two sets of vertices in a bipartite graph, where a task is connected to a worker if the worker is able to complete it. The problem therefore is to find a maximum matching. More on this topic is discussed in the article – Maximum Bipartite Matching

GATE CS Corner Questions

Practicing the following questions will help you test your knowledge. All questions have been asked in GATE in previous years or in GATE Mock Tests. It is highly recommended that you practice them. 1. GATE CS 2003, Question 36

References –

Matching – Wikipedia Discrete Mathematics and its Applications, by Kenneth H Rosen

Last Updated : 07 Jan, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads