Questions: Sparse Signal Recovery and Basis Pursuit

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

A signal x is sparse (K nonzero coefficients out of N) and observed as y = Ax + noise. To recover x via basis pursuit, you solve minimize ||x||₁ subject to ||Ax − y||₂ ≤ ε. Why is minimizing ||x||₁ (sum of absolute values) better than minimizing ||x||₀ (counting nonzeros) directly?

Aℓ₀ minimization is nonconvex and NP-hard; ℓ₁ is convex and solvable in polynomial time. Under coherence conditions, they give the same answer
Bℓ₁ is always better than ℓ₀; ℓ₀ is never a good sparsity measure
Cℓ₁ requires fewer measurements than ℓ₀, violating the Nyquist theorem
Dℓ₀ and ℓ₁ are equivalent; the choice is purely computational
Question 2 Multiple Choice

Iterative Hard Thresholding (IHT) recovers a sparse signal by repeating: update x ← shrink(x + A^T(y − Ax), K), where shrink(·, K) keeps the K largest magnitude coefficients and zeros the rest. Why does this work, and why is it faster than basis pursuit?

AIHT directly enforces the cardinality constraint ||x||₀ = K, guaranteeing sparsity; it is faster because each iteration is simple thresholding, not solving a linear program
BIHT is a gradient descent variant that projects onto the sparse set at each step, trading guaranteed convergence for computational speed
CIHT only works for noise-free signals; in the presence of noise, basis pursuit is required
DIHT and basis pursuit are mathematically equivalent; the difference is purely implementation
Question 3 True / False

Coherence of a dictionary A is the maximum absolute inner product between any two distinct atoms: μ(A) = max_{i≠j} |⟨a_i, a_j⟩|. High coherence (μ ≈ 1) makes sparse recovery harder; low coherence (μ ≈ 0) makes it easier. Why?

TTrue
FFalse
Question 4 True / False

In a noisy setting, basis pursuit (minimize ||x||₁ subject to ||Ax − y||₂ ≤ ε) can sometimes recover a non-sparse solution that fits the data. What prevents this, and when does basis pursuit fail?

TTrue
FFalse
Question 5 Short Answer

Explain the relationship between the coherence μ(A) and the minimum sparsity level K_min such that basis pursuit recovers K-sparse signals. Why does reducing coherence allow recovery of sparser signals?

Think about your answer, then reveal below.