Domination
A dominating set of a graph \(G=(V,E)\) is a subset \(D\) of \(V\) such that every vertex outside of \(D\) has at least one neighbor in \(D\).
The domination number \(\gamma(G)\) of \(G\) denotes the size of a minimum dominating set of \(G\).
The corresponding decision problem is a classical NP-complete problem in complexity theory.
Variants and Related Parameters
There exists a vast number of variants. We cover the most important.
Connected Domination. The graph induced by \(D\) is connected.
Total Domination. Every vertex of \(G\) has at least one neighbor in \(D\).
\(k\)-Domination. Every vertex of \(G\) not in \(D\) has at least \(k\) neighbors in \(D\).
Multiple Domination. Every vertex of \(G\) has at least \(k\) neighbors in \(D\).
\(k\)-Distance Domination. Every vertex of \(G\) not in \(D\) is in distance at most \(k\) of \(D\).
Roman Domination. A partition of \(V\) into sets \(V_0,V_1,V_2\) such that every vertex in \(V_0\) has a neighbor in \(V_2\).
The weight of such a partition is \(|V_1|+2|V_2|\), and the Roman domination number of \(G\) is the minimum weight taken over all feasible partitions.
(This variant can be interpreted as a solution to the problem of stationing Roman legions such that towns without a legion are protected by neighboring towns with at least two legions.)
Domatic Partitions. A partition of \(V\) into disjoint dominating sets.
The domatic number is the maximum size of a domatic partition.
Irredundance.
A vertex \(v\) in a set \(I\) is irredundant in \(I\) if it has a private neighbor w.r.t. \(I\); otherwise it is redundant.
The set \(I\) is irredundant if all of its vertices are irredundant in \(I\).
The irredundance number \(ir(G)\) denotes the size of a maximum irredundant set of \(G\).
Since every minimum dominating set is maximal irredundant, every graph satisfies \(ir\leq\gamma\).
Problems
Find bounds and algorithms for the above parameters or relations between them.
Problems may become easier when restricted to suitable graph classes.