Questions: Submodular Optimization

4 questions to test your understanding

Score: 0 / 4
Question 1 Multiple Choice

The greedy algorithm for monotone submodular maximization under a cardinality constraint (select k elements to maximize f) achieves approximation ratio (1 - 1/e). What drives this specific ratio?

AThe ratio comes from counting arguments about set sizes
BEach greedy step captures at least 1/k of the remaining gap to OPT (by submodularity, the best single addition is at least (OPT - f(S_i))/k). After k steps, the remaining gap is at most (1 - 1/k)^k * OPT ≈ OPT/e, so f(S_k) >= (1 - 1/e) * OPT
CThe ratio is an artifact of the analysis and the true guarantee is 1
DThe ratio depends on the specific submodular function and is not universal
Question 2 True / False

Submodular MINIMIZATION (finding the set S that minimizes a submodular function f) can be solved in polynomial time, while submodular MAXIMIZATION under constraints is NP-hard.

TTrue
FFalse
Question 3 Short Answer

Explain why the maximum coverage problem (select k sets from a collection to maximize the number of covered elements) is a special case of submodular maximization, and what this implies about its approximability.

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

The multilinear extension of a submodular function enables continuous relaxation techniques (analogous to LP relaxation) for submodular maximization under complex constraints.

TTrue
FFalse