Minimum Maximal Matching

Input

Graph G=(V,E)G = (V, E), positive integer KEK \leq |E|.

Question

Is there a subset EEE' \subseteq E with EK|E'| \leq K such that EE' is a maximal matching, i.e. no two edges in EE' share a common endpoint and every edge in EEE - E' shares a common endpoint with some edge in EE'?

Classes

Comments

Remains NP-complete for planar graphs and for bipartite graphs, in both cases even if no vertex degree exceeds 3. The problem of finding a maximum maximal matching is just the usual graph matching problem and is solvable in polynomial time (e.g. see (Lawler, 1976)).

Proofs

NP-complete

Transformation from Vertex Cover for cubic graphs (Yannakakis & Gavril, 1980).

Reducible from

Reducible to

References