König's Theorem and Matching-Cover Duality

Graduate Depth 63 in the knowledge graph I know this Set as goal
graph-theory matching vertex-cover

Core Idea

König's Theorem states that in a bipartite graph, the size of the maximum matching equals the size of the minimum vertex cover. This fundamental duality shows that finding maximum matchings and minimum covers are essentially the same problem in bipartite graphs, with profound implications for optimization.

How It's Best Learned

Work through small bipartite graphs, computing maximum matchings and minimum covers, verifying they have equal size.

Common Misconceptions

This equality holds ONLY for bipartite graphs; in general graphs, matching size can be strictly less than vertex cover size.

Explainer

You've studied Hall's Marriage Theorem, which tells you when a perfect matching exists in a bipartite graph: every subset S on one side must have at least |S| neighbors. König's Theorem deepens this insight into a duality: in a bipartite graph, the size of the maximum matching always equals the size of the minimum vertex cover. These are two different optimization problems that turn out to have the same answer — a surprising and powerful equivalence.

First, make sure both concepts are clear. A matching is a set of edges sharing no endpoints — each vertex appears in at most one selected edge. The goal is to select as many edges as possible without conflict. A vertex cover is a set of vertices such that every edge has at least one endpoint in the set. The goal is to "cover" all edges using as few vertices as possible. These objectives pull in opposite directions: a matching wants many non-overlapping edges, a cover wants few vertices touching everything. For any graph, the minimum vertex cover size is at least the maximum matching size — because each matched edge needs a separate vertex to cover it. König's Theorem says equality holds for bipartite graphs.

The proof uses the augmenting path technique underlying Hall's theorem. Given a maximum matching M, start from the left-side vertices not matched by M and explore alternating paths: edges not in M followed by edges in M, and so on. The vertices reachable by these alternating paths define a set Z. The minimum vertex cover is then constructed as: the left-side vertices not in Z, plus the right-side vertices that are in Z. Careful analysis shows this cover has exactly the same size as the matching M, proving equality. The bipartite structure is essential: in a general graph, odd cycles can cause the matching to be strictly smaller than the minimum cover, breaking the equality.

The theorem has a striking min-max interpretation. In scheduling problems modeled as bipartite graphs — tasks on one side, machines on the other, edges indicating compatibility — the maximum number of simultaneously assignable task-machine pairs equals the minimum number of conflicts that must be blocked to make any assignment feasible. This min-max duality (maximum of one thing equals minimum of another) is a recurring theme in combinatorics and optimization. König's Theorem is in fact the combinatorial analogue of LP duality for bipartite matching: the primal problem (maximize matching) and its dual (minimize cover) have equal optimal values. For non-bipartite graphs, this breaks — the Petersen graph's maximum matching has size 5 while its minimum vertex cover has size 6 — demonstrating that König's result is uniquely a bipartite phenomenon.

Practice Questions 5 questions

Prerequisite Chain

Counting to 10Counting to 20Understanding ZeroThe Number ZeroCounting to FiveOne-to-One CorrespondenceCombining Small Groups Within 5Addition Within 10Addition Within 20Two-Digit Addition Without RegroupingTwo-Digit Addition with RegroupingAddition Within 100Repeated Addition as MultiplicationMultiplication Facts Within 100Division as Equal SharingDivision as Grouping (Measurement Division)Division: Grouping (Repeated Subtraction) ModelDivision: Fair Sharing ModelDivision as Equal SharingDivision as GroupingBasic Division FactsDivision Facts Within 100Two-Digit by One-Digit DivisionDivision with RemaindersRemainders and Quotients in DivisionDivision Word ProblemsIntroduction to Long DivisionFactors and MultiplesPrime and Composite NumbersEquivalent FractionsRelating Fractions and DecimalsDecimal Place ValueIntegers and the Number LineOpposites and Additive InversesAbsolute ValueAdding IntegersSubtracting IntegersMultiplying IntegersDividing IntegersUnit RatesProportionsPercent ConceptConverting Between Fractions, Decimals, and PercentsOperations with Rational NumbersTwo-Step EquationsSolving Multi-Step EquationsEquations with Variables on Both SidesLiteral EquationsSlope-Intercept FormPoint-Slope FormWriting Linear EquationsParallel and Perpendicular Line SlopesGraphing Linear EquationsSystems of Equations — Graphing MethodSystems of Equations — Elimination MethodSystems of Three VariablesMatrices IntroductionGraph Representation: Matrices and ListsGraph Paths, Cycles, and ConnectivityBipartite Graphs and MatchingsMatchings in Bipartite GraphsHall's Marriage TheoremKönig's Theorem and Min-Max RelationsKönig's Theorem and Matching-Cover Duality

Longest path: 64 steps · 272 total prerequisite topics

Prerequisites (2)

Leads To (0)

No topics depend on this one yet.