Documentation

LeanPool.MinimumDegreeMatching.Basic

Perfect and near-perfect matchings from high minimum degree #

A finite simple graph whose minimum degree is at least half the number of vertices contains a perfect matching when its order is even and a near-perfect matching when its order is odd. The results are stated in the idiomatic SimpleGraph.Subgraph matching vocabulary.

Main results #

Implementation notes #

The even case reuses the finite-set augmentation theorem from Spread. The odd case is reduced to it by adjoining a universal apex vertex and deleting that vertex from the resulting perfect matching. Both public formulations therefore share one proof of the degree criterion.

Dirac-type perfect matching (even case). A finite simple graph on an even number of vertices whose minimum degree satisfies |V| ≤ 2 · δ(G) has a perfect matching.

Dirac-type near-perfect matching (odd case). A finite simple graph on an odd number of vertices whose minimum degree satisfies |V| ≤ 2 · δ(G) + 1 has a matching covering all but exactly one vertex: there is a vertex w and a matching M with vertex set {w}ᶜ.