L-reduction

From Wikipedia, the free encyclopedia
Jump to navigation Jump to search

In computer science, particularly the study of approximation algorithms, an L-reduction ("linear reduction") is a transformation of optimization problems which linearly preserves approximability features; it is one type of approximation-preserving reduction. L-reductions in studies of approximability of optimization problems play a similar role to that of polynomial reductions in the studies of computational complexity of decision problems.

The term L reduction is sometimes used to refer to log-space reductions, by analogy with the complexity class L, but this is a different concept.

Definition

Let A and B be optimization problems and cA and cB their respective cost functions. A pair of functions f and g is an L-reduction if all of the following conditions are met:

  • functions f and g are computable in polynomial time,
  • if x is an instance of problem A, then f(x) is an instance of problem B,
  • if y' is a solution to f(x), then g(y' ) is a solution to x,
  • there exists a positive constant α such that
OPTB(f(x))αOPTA(x),
  • there exists a positive constant β such that for every solution y' to f(x)
|OPTA(x)cA(g(y))|β|OPTB(f(x))cB(y)|.

Properties

Implication of PTAS reduction

An L-reduction from problem A to problem B implies an AP-reduction when A and B are minimization problems and a PTAS reduction when A and B are maximization problems. In both cases, when B has a PTAS and there is an L-reduction from A to B, then A also has a PTAS.[1][2] This enables the use of L-reduction as a replacement for showing the existence of a PTAS-reduction; Crescenzi has suggested that the more natural formulation of L-reduction is actually more useful in many cases due to ease of usage.[3]

Proof (minimization case)

Let the approximation ratio of B be 1+δ. Begin with the approximation ratio of A, cA(y)OPTA(x). We can remove absolute values around the third condition of the L-reduction definition since we know A and B are minimization problems. Substitute that condition to obtain

cA(y)OPTA(x)OPTA(x)+β(cB(y)OPTB(x))OPTA(x)

Simplifying, and substituting the first condition, we have

cA(y)OPTA(x)1+αβ(cB(y)OPTB(x)OPTB(x))

But the term in parentheses on the right-hand side actually equals δ. Thus, the approximation ratio of A is 1+αβδ.

This meets the conditions for AP-reduction.

Proof (maximization case)

Let the approximation ratio of B be 11δ. Begin with the approximation ratio of A, cA(y)OPTA(x). We can remove absolute values around the third condition of the L-reduction definition since we know A and B are maximization problems. Substitute that condition to obtain

cA(y)OPTA(x)OPTA(x)β(cB(y)OPTB(x))OPTA(x)

Simplifying, and substituting the first condition, we have

cA(y)OPTA(x)1αβ(cB(y)OPTB(x)OPTB(x))

But the term in parentheses on the right-hand side actually equals δ. Thus, the approximation ratio of A is 11αβδ.

If 11αβδ=1+ϵ, then 11δ=1+ϵαβ(1+ϵ)ϵ, which meets the requirements for PTAS reduction but not AP-reduction.

Other properties

L-reductions also imply P-reduction.[3] One may deduce that L-reductions imply PTAS reductions from this fact and the fact that P-reductions imply PTAS reductions.

L-reductions preserve membership in APX for the minimizing case only, as a result of implying AP-reductions.

Examples

See also

References

Template:Reflist

  • G. Ausiello, P. Crescenzi, G. Gambosi, V. Kann, A. Marchetti-Spaccamela, M. Protasi. Complexity and Approximation. Combinatorial optimization problems and their approximability properties. 1999, Springer. Template:Isbn

Template:Comp-sci-theory-stub

  1. Script error: No such module "citation/CS1".
  2. Script error: No such module "citation/CS1".
  3. a b Script error: No such module "citation/CS1".