ArticleslgStudy

computer science

PTAS reduction

PTAS reduction is a computer science topic covered in the lgStudy science library. This page brings together a partial reference excerpt, illustrations, worked examples, real-world applications and a short study plan, so you can understand PTAS reduction rather than just read about it. In short: In computational complexity theory, a PTAS reduction is an approximation-preserving reduction that is often used to perform reductions between solutions to optimization problems. It preserves the property that a problem has a polynomial time approximation scheme (PTAS) and is used to define completeness for certain classes of optimization problems such as APX.

Key takeaways

  • PTAS reduction belongs to computer science; place it in that map before memorising details.
  • Learn the definition first, then one example that makes the definition concrete.
  • Connect PTAS reduction to a quantity you can measure, compute or draw — that is where exam questions come from.
  • Reproduce the core statement of PTAS reduction from memory before moving on to harder problems.

Reference excerpt

In computational complexity theory, a PTAS reduction is an approximation-preserving reduction that is often used to perform reductions between solutions to optimization problems. It preserves the property that a problem has a polynomial time approximation scheme (PTAS) and is used to define completeness for certain classes of optimization problems such as APX. Notationally, if there is a PTAS reduction from a problem A to a problem B, we write A ≤ PTAS B {\displaystyle {\text{A}}\leq _{\text{PTAS}}{\text{B}}} . With ordinary polynomial-time many-one reductions, if we can describe a reduction from a problem A to a problem B, then any polynomial-time solution for B can be composed with that reduction to obtain a polynomial-time solution for the problem A. Similarly, our goal in defining PTAS reductions is so that given a PTAS reduction from an optimization problem A to a problem B, a PTAS for B can be composed with the reduction to obtain a PTAS for the problem A.

Definition Formally, we define a PTAS reduction from A to B using three polynomial-time computable functions, f, g, and α, with the following properties:

f maps instances of problem A to instances of problem B. g takes an instance x of problem A, an approximate solution to the corresponding problem f ( x ) {\displaystyle f(x)} in B, and an error parameter ε and produces an approximate solution to x. α maps error parameters for solutions to instances of problem A to error parameters for solutions to problem B. If the solution y to f ( x ) {\displaystyle f(x)} (an instance of problem B) is at most 1 + α ( ϵ ) {\displaystyle 1+\alpha (\epsilon )} times worse than the optimal solution, then the corresponding solution g ( x , y , ϵ ) {\displaystyle g(x,y,\epsilon )} to x (an instance of problem A) is at most 1 + ϵ {\displaystyle 1+\epsilon } times worse than the optimal solution.

Properties From the definition it is straightforward to show that:

A ≤ PTAS B {\displaystyle {\text{A}}\leq _{\text{PTAS}}{\text{B}}} and B ∈ PTAS ⟹ A ∈ PTAS {\displaystyle {\text{B}}\in {\text{PTAS}}\implies {\text{A}}\in {\text{PTAS}}}

A ≤ PTAS B {\displaystyle {\text{A}}\leq _{\text{PTAS}}{\text{B}}} and A ∉ PTAS ⟹ B ∉ PTAS {\displaystyle {\text{A}}\not \in {\text{PTAS}}\implies {\text{B}}\not \in {\text{PTAS}}}

L-reductions imply PTAS reductions. As a result, one may show the existence of a PTAS reduction via a L-reduction instead. PTAS reductions are used to define completeness in APX, the class of optimization problems with constant-factor approximation algorithms.

See also Approximation-preserving reduction L-reduction APX

References

Ingo Wegener. Complexity Theory: Exploring the Limits of Efficient Algorithms. ISBN 3-540-21045-8. Chapter 8, pp. 110–111. Google Books preview

Worked examples

Example 1 — a first encounter with PTAS reduction

Start with the simplest possible case. Write down what PTAS reduction claims or describes in one sentence, then invent the smallest concrete situation in which that sentence is true. In computer science, the smallest case is usually a single object, a single equation or a single measurement. Check that every symbol or term in your sentence has a meaning in that case.

Example 2 — changing one variable

Take the situation from Example 1 and change exactly one quantity: double it, halve it, or set it to zero. Predict what should happen to PTAS reduction before you calculate. Comparing your prediction with the result is the fastest way to find out whether you understand the idea or only the words.

Example 3 — an exam-style question

Typical questions about PTAS reduction ask you to (a) state it precisely, (b) apply it to given data, and (c) explain a limitation. Practise writing all three answers in under five minutes; the third part is what separates a full-mark answer from an average one.

Applications of PTAS reduction

In research
PTAS reduction appears in computer science research whenever the underlying quantities have to be modelled precisely. Papers usually cite it as a starting assumption and then explore where it breaks down.
In technology and industry
Engineering practice reuses PTAS reduction in design rules, simulations and safety margins. Knowing the idea lets you read a specification sheet and understand why the numbers look the way they do.
In the classroom
PTAS reduction is common in secondary-school and first-year university syllabi. It links to neighbouring topics Approximation algorithms, Reduction (complexity), so understanding it makes those chapters shorter.
In everyday life
Look for PTAS reduction outside the textbook — in sport, cooking, traffic, electronics or the sky above you. An example you found yourself is remembered far longer than one you were given.

Affiliate

Preply — study more efficiently by working with a personal tutor. 50% off.

How to study PTAS reduction in 20 minutes

  1. Read the reference excerpt below once, without taking notes.
  2. Close the page and write down what PTAS reduction means in your own words.
  3. Compare your version with the excerpt and mark what you missed.
  4. Work through the three examples above with pen and paper.
  5. Explain PTAS reduction out loud to somebody else — or to Teacher Smith in the lgStudy chat.

Frequently asked questions

What is PTAS reduction in simple terms?

In computational complexity theory, a PTAS reduction is an approximation-preserving reduction that is often used to perform reductions between solutions to optimization problems. It preserves the property that a problem has a polynomial time approximation scheme (PTAS) and is used to define complet…

Why does PTAS reduction matter?

Because it connects several computer science ideas at once: it gives you a definition you can apply, a quantity you can calculate, and a way to check whether a result is plausible.

How should I study PTAS reduction?

Read the excerpt, restate it from memory, then work through the examples and applications listed on this page. The five-step study plan above takes about twenty minutes.

What does this page cover?

It gives you a compact reference excerpt plus original lgStudy explanations, examples, applications and study material on PTAS reduction.

Tags

  • Approximation algorithms
  • Reduction (complexity)

Keep exploring