Questions: Concentration Inequalities for Algorithm Design

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

A randomized algorithm makes n independent coin flips, each with success probability p. You want the total number of successes X to be within a (1 +/- delta) factor of its mean mu = np. Which concentration inequality is most appropriate?

AMarkov's inequality, which gives P(X >= a) <= mu/a
BChebyshev's inequality, which gives P(|X - mu| >= k*sigma) <= 1/k^2
CChernoff bound, which gives P(|X - mu| >= delta*mu) <= 2*exp(-mu*delta^2/3) for delta in (0,1)
DCentral limit theorem, which says X is approximately Gaussian for large n
Question 2 True / False

The Azuma-Hoeffding inequality requires the random variables to be independent of each other.

TTrue
FFalse
Question 3 Short Answer

Explain the Lovász Local Lemma and give an algorithmic application where it provides a non-trivial existence guarantee.

Think about your answer, then reveal below.
Question 4 Multiple Choice

A Doob martingale is constructed by defining Z_i = E[f(X_1,...,X_n) | X_1,...,X_i]. Why is this useful for proving concentration of f?

AIt converts any function into a linear function, making the analysis trivial
BIt creates a martingale from any function of independent random variables, allowing Azuma-Hoeffding to be applied whenever the bounded differences condition holds for f
CIt eliminates the need for independence assumptions entirely
DIt always provides tighter bounds than Chernoff
Question 5 True / False

In the analysis of randomized rounding for an LP relaxation, Chernoff bounds are preferred over Chebyshev's inequality because they give exponentially decaying tails instead of polynomially decaying tails.

TTrue
FFalse