Covering problems

From Infogalactic: the planetary knowledge core
(Redirected from Covering problem)
Jump to: navigation, search

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 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.

Lua error in package.lua at line 80: module 'strict' not found.

General LP formulation

In the context of linear programming, one can think of any linear program as a covering problem if the coefficients in the constraint matrix, the objective function, and right-hand side are nonnegative.[1] More precisely, let us consider the following general integer linear program:

minimize \sum_{i=1}^n c_i x_i
subject to  \sum_{i=1}^n a_{ij} x_i \geq b_j \text{ for }j=1,\dots,m
x_i \geq 0\text{ for }i=1,\dots,n.

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

Intuition: Assume having n types of object and each object of type i has an associated cost of c_i. The number x_i indicates how many objects of type i we buy. If the constraints A\mathbf{x}\geq \mathbf{b} are satisfied, it is said that \mathbf{x} 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.

Other uses

For Petri nets, for example, 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.

See also

Notes

  1. Vazirani (2001, p. 112)

References

  • Lua error in package.lua at line 80: module 'strict' not found.

External links