HiveBrain v1.2.0
Get Started
← Back to all entries
patternModerate

Size of Maximum Matching in Bipartite Graph

Submitted by: @import:stackexchange-cs··
0
Viewed 0 times
maximumgraphsizebipartitematching

Problem

Am I correct in my observation that the cardinality of the maximum matching $M$ of a bipartite graph $G(U, V, E)$ is always equal to $\min(|U|, |V|)$?

Solution

Given a bipartite graph $G = (U,V,E)$ and a maximum matching $M$ of $G$, via Konig's Theorem we see that $|M| = |C|$ where $C$ is a minimum vertex cover for $G$. Your statement is merely an upper bound on the size of the possible matching, not a strict equality.

The image on the wikipedia page provides a nice counterexample to your claim. We see that $|M| = 6$, while $\min(|U|,|V|) = 7$.

However, in the case of a complete bipartite graph $K_{n,m}$ your statement holds.

Context

StackExchange Computer Science Q#4675, answer score: 13

Revisions (0)

No revisions yet.