Questions: Approximation Algorithms (LP Relaxation and Primal-Dual)

4 questions to test your understanding

Score: 0 / 4
Question 1 Multiple Choice

The LP relaxation of the minimum vertex cover problem has an integrality gap of exactly 2. What does this mean, and why does it immediately yield a 2-approximation algorithm?

AThe LP relaxation always returns a solution with cost exactly twice the integer optimum
BThe ratio between the optimal integer solution and the optimal fractional solution is at most 2 for all instances, and rounding all fractional variables >= 1/2 to 1 (and others to 0) produces a valid vertex cover with cost at most 2 times the LP optimum, which is at most 2 times the integer optimum
CThe LP relaxation runs in time O(n^2) instead of O(n)
DEvery vertex cover can be converted to a fractional solution by dividing all values by 2
Question 2 True / False

In the primal-dual method for approximation algorithms, the dual solution provides a LOWER BOUND on the optimal value, while the primal solution provides the actual (feasible) solution with an UPPER BOUND.

TTrue
FFalse
Question 3 Short Answer

Explain why randomized rounding of an LP relaxation for set cover achieves O(log n)-approximation, and why this is essentially optimal.

Think about your answer, then reveal below.
Question 4 True / False

The primal-dual method requires explicitly solving a linear program before constructing the approximation.

TTrue
FFalse