Historical Context & Motivation
Probability theory has long grappled with a deceptively simple question: given a collection of events, how likely is it that at least one of them occurs? The union bound (also called Boole's inequality) provides the most elementary answer: simply sum the individual probabilities. While this bound is often loose, its simplicity and generality make it one of the most frequently invoked tools across combinatorics, statistical learning theory, and high-dimensional statistics. Alongside the union bound, the notion of concentration of measure — the phenomenon that well-behaved random variables rarely stray far from their expected values — forms the conceptual backbone of modern probabilistic analysis.
Understanding these two ideas together is essential because many proofs in probability and statistics follow a common template: first show that a single 'bad event' has small probability, then apply a union bound over all possible bad events, and finally appeal to a concentration inequality to control the probability of each individual bad event. This section traces the key milestones that led to our current understanding.
The central question this lesson addresses is: How do we control the probability that something goes wrong across many simultaneous events, and why do averages of random quantities tend to be predictable? The union bound and basic concentration inequalities provide the first-line answers, and mastering them unlocks the reasoning patterns used throughout advanced probability and statistics.
Core Principles & Definitions
Before diving into calculations, it helps to lay out the foundational ideas that underpin both union bounds and concentration phenomena. These principles are surprisingly intuitive, yet they carry enormous power when wielded carefully in proofs and applications.
Subadditivity of Probability
Worst-Case Summation
Concentration of Measure
Tail Bound Hierarchy
Union Bound + Concentration = ε-net Arguments
Visual Explanation — The Union Bound in Action
The union bound becomes most transparent when visualized through Venn-style diagrams. The key geometric insight is that summing individual probabilities overcounts the intersection regions. The following diagram illustrates three events A₁, A₂, and A₃ within a sample space Ω, highlighting how the union bound relates to the true probability of the union.
In the diagram above, notice that the intersection regions (A₁∩A₂, A₁∩A₃, A₂∩A₃, and A₁∩A₂∩A₃) are counted multiple times when we naïvely sum P(A₁) + P(A₂) + P(A₃). The inclusion–exclusion principle corrects for this overcounting by alternately subtracting and adding intersection terms, but doing so requires knowledge of all pairwise and higher-order intersection probabilities — information that is often unavailable or computationally expensive. The beauty of the union bound is that it sidesteps this entirely, accepting a looser guarantee in exchange for needing zero information about dependence structure.
Mathematical Framework
We now formalize the union bound and the three foundational concentration inequalities that typically accompany it in introductory treatments. Each result is stated precisely, and the key proof technique is sketched to build intuition for when and why each bound is useful.
The Union Bound (Boole's Inequality)
The proof is immediate from monotonicity and finite additivity. Write A₁ ∪ ⋯ ∪ Aₙ = ⋃ Bᵢ where B₁ = A₁ and Bᵢ = Aᵢ \ (A₁ ∪ ⋯ ∪ Aᵢ₋₁). The Bᵢ are disjoint, so P(⋃ Aᵢ) = ∑ P(Bᵢ) ≤ ∑ P(Aᵢ) since Bᵢ ⊆ Aᵢ.
Markov's Inequality
Chebyshev's Inequality
Hoeffding's Inequality
Comparing Tail Decay — Polynomial vs. Exponential
One of the most important practical distinctions in concentration theory is the rate at which tail probabilities decay. This distinction directly determines how many events you can union-bound over before the total error probability becomes unacceptably large. If each individual event has probability ε, and there are N events, the union bound gives total error at most Nε. For this to remain small, you need ε ≤ δ/N for a target failure probability δ — meaning the per-event tail bound must shrink at least as fast as 1/N. Polynomial tail decay (Chebyshev) struggles when N is large, whereas exponential decay (Hoeffding) handles even exponentially large N gracefully.
| Inequality | Assumptions | Tail Decay | Max N for Union Bound (δ = 0.05, t = 3σ) |
|---|---|---|---|
| Markov | X ≥ 0, finite E[X] | O(1/t) | Not directly applicable: Markov bounds P(X ≥ a) via E[X]/a and does not use σ, so '3σ' is not a natural parameterization. With only mean information, the per-event bound is not controlled by σ alone. |
| Chebyshev | Finite variance | O(1/t²) | At t = 3σ: per-event bound = 1/9 ≈ 0.111. Union bound ≤ 0.05 requires N × 0.111 ≤ 0.05, so N ≤ 0.45 — less than 1 event. Chebyshev cannot sustain even a single union-bounded event at this threshold. |
| Hoeffding | Independent, bounded | exp(−2nt²) | Per-event bound = 2 exp(−2nt²). Union bound ≤ 0.05 requires N ≤ 0.025 exp(2nt²), which grows exponentially in n — can handle N exponential in n. |
The table makes the practical implications vivid. With Chebyshev's inequality at t = 3σ, each event has probability at most 1/9 ≈ 0.111, so a union bound over even a single event already exceeds a 5% target (since 0.111 > 0.05). With Hoeffding's bound, the per-event probability decays as 2 exp(−2nt²), which can be made tiny enough to union-bound over an exponentially growing collection — the regime relevant to learning theory and high-dimensional inference.
Worked Example — Bounding Deviation of a Sample Mean
Consider the following scenario: a data scientist collects n = 200 independent observations X₁, …, X₂₀₀, each drawn uniformly from [0, 1], and computes the sample mean X̄ = (1/200) ∑ Xᵢ. She needs the probability that X̄ deviates from its expectation μ = 0.5 by more than 0.05. She also needs to ensure that, across K = 50 parallel experiments (different datasets), none of the sample means deviates by more than 0.05 from 0.5. We solve both parts.
Strengths, Limitations, and When to Go Beyond
The union bound combined with standard concentration inequalities is an extraordinarily versatile tool, but it is not always the best tool. Understanding when it works well and when it fails is an essential part of mathematical maturity in probability.
| Aspect | Strengths | Limitations |
|---|---|---|
| Generality | No assumptions on dependence needed; applies to any events whatsoever. | Ignores structure — highly correlated events yield very loose bounds. |
| Simplicity | One-line proof; easy to apply in complex proofs without heavy machinery. | May be vacuous (exceed 1) when the number of events is large relative to per-event probabilities. |
| Composability | Seamlessly combines with any tail bound (Markov, Chebyshev, Hoeffding, Chernoff, etc.). | For continuous parameter spaces, discretization (ε-net) introduces additional approximation error. |
| Scalability | With exponential tail bounds, handles polynomially or even exponentially many events via log-factor costs. | With polynomial tail bounds (Chebyshev), fails for more than a handful of events. |
| Tightness | Tight when events are disjoint or nearly disjoint. | Can be off by orders of magnitude when events overlap heavily; inclusion–exclusion or Lovász Local Lemma may be needed. |
Connection to Advanced Concentration Theory
The union bound and basic concentration inequalities introduced in this lesson are the ground floor of a towering edifice. As problems grow in dimension and complexity — from finite unions to suprema over function classes, from independent to dependent data — more sophisticated tools become necessary. Yet every advanced method can be traced back to the simple ideas presented here.
| Basic Tool (This Lesson) | Advanced Generalization | Key Improvement |
|---|---|---|
| Union bound over finite N events | Chaining / Dudley's entropy integral | Replaces log N with an integral over metric entropy, yielding tight bounds for Gaussian processes. |
| Hoeffding for bounded independent variables | Sub-Gaussian / sub-exponential theory | Extends to unbounded variables whose tails are controlled by moment-generating function conditions. |
| Chebyshev (variance-based) | Matrix concentration (Matrix Bernstein) | Extends scalar concentration to operator-norm bounds for sums of random matrices. |
| Union bound + per-event tail bound | Uniform convergence / VC theory | Controls supremum of empirical process over infinite function classes using combinatorial dimension. |
As you advance through probability theory, statistical learning, and high-dimensional statistics, you will encounter these extensions repeatedly. The intuition you build now — that union bounds trade generality for looseness and that exponential tails are necessary for high-dimensional control — will serve as a reliable compass for navigating more complex arguments.
Practice Problems
Lesson Summary
The union bound (Boole's inequality) states that P(A₁ ∪ ⋯ ∪ Aₙ) ≤ ∑ P(Aᵢ), providing a universal, dependence-free upper bound on the probability that at least one event in a collection occurs. It is tight for disjoint events and increasingly loose when events overlap. The bound's utility depends critically on how small the per-event probabilities P(Aᵢ) are, which is where concentration inequalities enter the picture. Markov's inequality (polynomial, O(1/t)) requires only nonnegativity, Chebyshev's inequality (polynomial, O(1/t²)) requires finite variance, and Hoeffding's inequality (exponential, e⁻ᶜᵗ²) requires independence and boundedness.
The canonical proof strategy in high-dimensional probability is to combine a per-event concentration bound with a union bound over all events. Because exponential tail bounds make each P(Aᵢ) decay as e⁻ᶜⁿ, the total error grows only as N × e⁻ᶜⁿ, remaining small even when N is polynomial or exponential in the problem dimension — a phenomenon that underpins ε-net arguments, VC theory, and uniform convergence throughout statistical learning and random matrix theory.