Dominating Set

Input

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

Question

Is there a dominating set of size KK or less for GG, i.e. a subset VVV' \subseteq V with VK|V'| \leq K such that for all uVVu \in V - V' there is a vVv \in V' for which {u,v}E\{u,v\} \in E?

Classes

Comments

Remains NP-complete for planar graphs with maximum vertex degree 3 and planar graphs that are regular of degree 4 (Garey & Johnson, 1979). Variation in which the subgraph induced by VV' is required to be connected is also NP-complete, even for planar graphs that are regular of degree 4 (Garey & Johnson, 1979). Also NP-complete if VV' is required to be both a dominating set and an independent set. Solvable in polynomial time for trees (Cockayne et al., 1975). The related [problem:edge-dominating-set] problem, where we ask for a set EEE' \subseteq E of KK or fewer edges such that every edge in EE shares at least one endpoint with some edge EE', is NP-complete, even for planar or bipartite graphs of maximum degree 3, but can be solved in polynomial time for trees (Yannakakis & Gavril, 1980), (Mitchell, 1977).

Proofs

NP-complete

Transformation from Vertex Cover.

Reducible from

Reducible to

References