Questions: Concentration Inequalities

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

You want to estimate the mean of a distribution in [0,1] to within epsilon = 0.05 with probability at least 0.95 (delta = 0.05). Using Hoeffding's inequality, how many samples do you need?

AAbout 200 samples — solving 2*exp(-2n*0.05^2) = 0.05 gives n = ln(40) / (2*0.0025) ≈ 738
BAbout 738 samples — solving 2*exp(-2n*0.0025) = 0.05 gives n ≈ 738
CAbout 50 samples — the rule of thumb is n = 1/epsilon
DAbout 10,000 samples — Hoeffding bounds require n >= 1/epsilon^2 * 1/delta
Question 2 Multiple Choice

McDiarmid's inequality applies to a function f(X_1, ..., X_n) where changing any single X_i can change f by at most c_i. Why is this more general than Hoeffding's inequality?

AMcDiarmid handles continuous random variables while Hoeffding only works for discrete ones
BMcDiarmid applies to any function of independent variables with bounded sensitivity, not just sums — it covers statistics like the median, maximum, or the empirical risk of a hypothesis, as long as each data point's influence is bounded
CMcDiarmid provides tighter bounds for all the same settings where Hoeffding applies
DMcDiarmid does not require independence, while Hoeffding does
Question 3 True / False

Bernstein's inequality is always tighter than Hoeffding's inequality because it incorporates the variance.

TTrue
FFalse
Question 4 True / False

Concentration inequalities are unnecessary for learning theory because the law of large numbers already guarantees that sample means converge to true means.

TTrue
FFalse
Question 5 Short Answer

Explain why Hoeffding's inequality, rather than the central limit theorem, is the appropriate tool for deriving sample complexity bounds in learning theory.

Think about your answer, then reveal below.