Template:Short description In combinatorics and computer science, covering problems are computational problems that ask whether a certain combinatorial structure 'covers' another, or how large the structure has to be to do that. Covering problems are minimization problems and usually integer linear programs, whose dual problems are called packing problems.

The most prominent examples of covering problems are the set cover problem, which is equivalent to the hitting set problem, and its special cases, the vertex cover problem and the edge cover problem.

Covering problems allow the covering primitives to overlap; the process of covering something with non-overlapping primitives is called decomposition.

Template:Covering-Packing Problem Pairs

General linear programming formulationEdit

In the context of linear programming, one can think of any minimization linear program as a covering problem if the coefficients in the constraint matrix, the objective function, and right-hand side are nonnegative.<ref>Template:Cite bookTemplate:Rp </ref> More precisely, consider the following general integer linear program:

minimize <math>\sum_{i=1}^n c_i x_i</math>
subject to <math> \sum_{i=1}^n a_{ji} x_i \geq b_j \text{ for }j=1,\dots,m</math>
<math>x_i \in \left\{0, 1, 2, \ldots\right\}\text{ for }i=1,\dots,n</math>.

Such an integer linear program is called a covering problem if <math>a_{ji}, b_j, c_i \geq 0</math> for all <math>i=1,\dots,n</math> and <math>j=1,\dots,m</math>.

Intuition: Assume having <math>n</math> types of object and each object of type <math>i</math> has an associated cost of <math>c_i</math>. The number <math>x_i</math> indicates how many objects of type <math>i</math> we buy. If the constraints <math>A\mathbf{x}\geq \mathbf{b}</math> are satisfied, it is said that <math>\mathbf{x}</math> is a covering (the structures that are covered depend on the combinatorial context). Finally, an optimal solution to the above integer linear program is a covering of minimal cost.

Kinds of covering problemsEdit

There are various kinds of covering problems in graph theory, computational geometry and more; see Category:Covering problems. Other stochastic related versions of the problem can be found.<ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref>

File:DiscCoveringExample.svg
The disk covering problem, which asks what the smallest real number <math>r(n)</math> is such that <math>n</math> disks of radius <math>r(n)</math> can be arranged in such a way as to cover the unit disk.

Covering in Petri netsEdit

For Petri nets, the covering problem is defined as the question if for a given marking, there exists a run of the net, such that some larger (or equal) marking can be reached. Larger means here that all components are at least as large as the ones of the given marking and at least one is properly larger.

Rainbow coveringTemplate:AnchorEdit

In some covering problems, the covering should satisfy some additional requirements. In particular, in the rainbow covering problem, each of the original objects has a "color", and it is required that the covering contains exactly one (or at most one) object of each color. Rainbow covering was studied e.g. for covering points by intervals:<ref>Template:Cite journal</ref>

  • There is a set J of n colored intervals on the real line, and a set P of points on the real line.
  • A subset Q of J is called a rainbow set if it contains at most a single interval of each color.
  • A set of intervals J is called a covering of P if each point in P is contained in at least one interval of Q.
  • The Rainbow covering problem is the problem of finding a rainbow set Q that is a covering of P.

The problem is NP-hard (by reduction from linear SAT).

Conflict-free coveringEdit

A more general notion is conflict-free covering.<ref>Template:Cite journal</ref> In this problem:

  • There is a set O of m objects, and a conflict-graph GO on O.
  • A subset Q of O is called conflict-free if it is an independent set in GO, that is, no two objects in Q are connected by an edge in GO.
  • A rainbow set is a conflict-free set in the special case in which GO is made of disjoint cliques, where each clique represents a color.

Conflict-free set cover is the problem of finding a conflict-free subset of O that is a covering of P. Banik, Panolan, Raman, Sahlot and Saurabh<ref>Template:Cite journal</ref> prove the following for the special case in which the conflict-graph has bounded arboricity:

  • If the geometric cover problem is fixed-parameter tractable (FPT), then the conflict-free geometric cover problem is FPT.
  • If the geometric cover problem admits an r-approximation algorithm, then the conflict-free geometric cover problem admits a similar approximation algorithm in FPT time.

ReferencesEdit

Template:Reflist