STATISTICS GRADUATE LEVEL • PROBABILITY FOUNDATIONS

Markov & Chebyshev Inequalities — Markov and Chebyshev inequalities

Bounding tail probabilities when the exact distribution is unknown, using only moments.

Historical Context & Motivation

Probability theory in the nineteenth century was dominated by a central question: how can one quantify the likelihood that a random variable deviates far from its expected value? Without knowing the precise form of a distribution, exact tail probabilities remain inaccessible, yet practitioners in actuarial science, physics, and engineering needed reliable worst-case guarantees. The Markov inequality and the Chebyshev inequality emerged as two of the earliest and most elegant answers: distribution-free bounds that depend only on moments of the random variable. Their influence stretches from the foundations of measure-theoretic probability to modern concentration-of-measure theory.

1867
Bienaymé's Observation
Irénée-Jules Bienaymé presents an early form of the variance-based tail bound in a communication to the French Academy of Sciences, predating Chebyshev's formal proof by several years.
1874
Chebyshev's Proof
Pafnuty Chebyshev publishes a rigorous proof of the inequality P(|X − μ| ≥ kσ) ≤ 1/k², formalizing a universal tail bound for distributions with finite variance.
1884
Markov's Generalization
Andrey Markov, Chebyshev's student, derives the more elementary first-moment bound P(X ≥ a) ≤ E[X]/a for nonnegative random variables, establishing what is now called Markov's inequality.
1933
Kolmogorov's Axioms
Andrey Kolmogorov axiomatizes probability theory using measure theory. Both inequalities are re-derived as immediate consequences of Lebesgue integration, solidifying their foundational role.
1963+
Concentration Inequalities
The Markov and Chebyshev bounds inspire exponentially tighter successors — Chernoff bounds, Hoeffding's inequality, and sub-Gaussian tail estimates — central to high-dimensional statistics and learning theory.

The fundamental question these inequalities address is deceptively simple: given only partial information about a random variable — its mean, or its mean and variance — what is the tightest universal bound on the probability that the variable exceeds a given threshold? Their answers are startlingly clean and remain indispensable tools, both as standalone estimates and as building blocks for more sophisticated concentration results.

Core Principles & Definitions

Both the Markov and Chebyshev inequalities belong to the family of moment-based tail bounds. They translate information encoded in the moments of a random variable into probabilistic guarantees about its tail behavior. Understanding these inequalities requires a firm grasp of a few foundational ideas that underpin the entire framework.

1

Nonnegativity & First Moment

Markov's inequality applies to nonnegative random variables. The expected value E[X] captures the 'center of mass' of the distribution and acts as the sole input to bound P(X ≥ a).
2

Variance as Spread

Chebyshev's inequality adds the variance σ² = Var(X) = E[(X − μ)²] as a second input. Variance quantifies spread around the mean, enabling tighter, symmetric two-sided bounds on deviations.
3

Distribution-Free Guarantees

Neither inequality assumes a specific distributional form — no normality, no symmetry, no finite support. They hold for any random variable satisfying the stated moment conditions, making them universally applicable.
4

Sharpness & Worst Cases

Both bounds are sharp — for each, there exists a distribution that achieves equality. This means no distribution-free improvement is possible with the same moment information.
5

Hierarchy of Bounds

Chebyshev's inequality is derived by applying Markov's inequality to the nonnegative random variable (X − μ)². This illustrates a recurring strategy: transforming the variable to leverage higher-moment information within the Markov framework.
KEY TAKEAWAY
Think of Markov's inequality as a fire alarm that only knows the average temperature of a building — it can still guarantee that no single room exceeds a certain threshold, though the bound may be conservative. Chebyshev's inequality is like upgrading that alarm to also know how much temperatures vary room-to-room, producing a noticeably tighter warning. Neither alarm knows the exact floorplan (the distribution), yet both provide safety guarantees you can bank on.

Visual Explanation — Markov's Inequality Geometry

The shaded pink tail region represents P(X ≥ a). Markov's inequality states that this area is at most E[X]/a. Notice how the bound depends only on the mean and the threshold a, not on the shape of the density.

The diagram above captures the geometric essence of Markov's inequality. For any nonnegative random variable X with finite mean μ = E[X], the probability that X exceeds a threshold a > 0 is bounded above by μ/a. Geometrically, the pink-shaded tail area cannot exceed the ratio of the mean to the threshold. This bound is intuitive: if the mean is small relative to a, then only a small fraction of the probability mass can reside beyond a. Conversely, when a is close to or smaller than μ, the bound exceeds 1 and becomes trivial — a feature that reminds us Markov's inequality is most informative in the far tail.

Mathematical Framework

Markov's Inequality — Statement and Proof

MARKOV'S INEQUALITY
P(X ≥ a) ≤ E[X] / a for X ≥ 0, a > 0
X is a nonnegative random variable with finite expectation E[X]. The threshold a is any strictly positive constant.

The proof is elegantly short. Define the indicator variable 𝟙{X ≥ a} which equals 1 when X ≥ a and 0 otherwise. Because X ≥ 0, the inequality a · 𝟙{X ≥ a} ≤ X holds pointwise: whenever the indicator is 1, we have a ≤ X by definition, and whenever the indicator is 0, the left side is 0 ≤ X. Taking expectations on both sides preserves the inequality (expectation is monotone), yielding a · P(X ≥ a) ≤ E[X]. Dividing by a > 0 completes the argument. This proof strategy — comparing an indicator to the original variable and taking expectations — is the template for a vast family of moment-based bounds.

Chebyshev's Inequality — Derivation from Markov

CHEBYSHEV'S INEQUALITY
P(|X − μ| ≥ k) ≤ σ² / k² equivalently P(|X − μ| ≥ kσ) ≤ 1 / k²
μ = E[X] is the mean, σ² = Var(X) is the variance, and k > 0 is the deviation parameter. The second form uses k in units of standard deviations.

Chebyshev's inequality follows by a single application of Markov's inequality to the nonnegative random variable Y = (X − μ)². Indeed, P(|X − μ| ≥ k) = P((X − μ)² ≥ k²) ≤ E[(X − μ)²] / k² = σ² / k². The transformation from the original variable to its squared deviation is the key insight: it converts a two-sided deviation bound into a Markov problem. The resulting bound decays as 1/k², which is faster than Markov's 1/k decay but still polynomial — a reflection of the limited information (only two moments) being used.

GENERALIZED MARKOV INEQUALITY
P(|X| ≥ a) ≤ E[|X|ⁿ] / aⁿ for any n > 0
By applying the basic Markov bound to the nonnegative variable |X|ⁿ, one obtains bounds that decay as 1/aⁿ. Higher moments yield tighter tail estimates, culminating in the Chernoff bound when n → ∞ via the moment generating function.
💡 Proof Strategy
The Markov → Chebyshev derivation exemplifies a powerful meta-technique: to bound P(g(X) ≥ t), choose a nonnegative monotone transformation ϕ such that {g(X) ≥ t} ⊆ {ϕ(X) ≥ ϕ(t)}, then apply Markov's inequality to ϕ(X). Optimizing over the family of transformations ϕ leads to exponential Chernoff-type bounds.

Sharpness & Extremal Distributions

A natural question is whether the Markov and Chebyshev bounds can be improved without additional distributional assumptions. The answer is no — both inequalities are sharp, meaning that for every choice of parameters, there exists a distribution that achieves equality. Understanding these extremal (worst-case) distributions deepens intuition about when the bounds are loose and when they are informative.

Left panel: the Markov extremal distribution is a two-point mass at 0 and a, with P(X = a) = μ/a. Right panel: the Chebyshev extremal distribution is a symmetric three-point mass at μ − kσ, μ, and μ + kσ. Both achieve exact equality in their respective bounds.

For Markov's inequality, the worst-case distribution concentrates all its mass on just two points: 0 and a. By setting P(X = a) = μ/a and P(X = 0) = 1 − μ/a, we get E[X] = a · (μ/a) = μ and P(X ≥ a) = μ/a, matching the bound exactly. This tells us that Markov's inequality is tight when the distribution is maximally 'sparse' — all mass either at 0 or at the threshold. For Chebyshev's inequality, the extremal distribution is a symmetric three-point mass placing probability 1/(2k²) at each of μ − kσ and μ + kσ, and the remaining mass 1 − 1/k² at μ. In both cases, the inequality becomes loose when the true distribution is more 'spread out' than these pathological extremal cases — for instance, a normal distribution has tail probabilities that decay exponentially rather than polynomially.

Worked Examples

Example 1 — Markov Bound on Exam Scores
1
Step 1 — State the ProblemSuppose the average score on an exam is E[X] = 72 points (out of 100), and scores are nonnegative. We wish to bound the probability that a randomly selected student scores at least 90.
2
Step 2 — Verify ConditionsX represents an exam score, so X ≥ 0 (nonnegative). E[X] = 72 is finite. The threshold a = 90 is strictly positive. All conditions for Markov's inequality are satisfied.
3
Step 3 — Apply Markov's InequalityP(X ≥ 90) ≤ E[X] / a = 72 / 90 = 0.80.
P(X ≥ 90) ≤ 0.80 (80%)
4
Step 4 — InterpretAt most 80% of students scored 90 or above. This bound is quite loose — in most realistic exam distributions, the true proportion scoring ≥ 90 would be much smaller. The looseness illustrates Markov's limitation: using only the first moment provides a coarse guarantee.
Example 2 — Chebyshev Bound on the Same Exam
1
Step 1 — Additional InformationNow suppose we also know that the standard deviation of exam scores is σ = 12, so σ² = 144. We want to bound P(|X − 72| ≥ 18), i.e., the probability a student's score deviates from the mean by at least 18 points.
2
Step 2 — Compute kThe deviation 18 equals 18/12 = 1.5 standard deviations. So k = 1.5.
3
Step 3 — Apply Chebyshev's InequalityP(|X − 72| ≥ 18) = P(|X − μ| ≥ 1.5σ) ≤ 1/(1.5)² = 1/2.25 ≈ 0.4444.
P(|X − 72| ≥ 18) ≤ 4/9 ≈ 0.444 (44.4%)
4
Step 4 — Compare with NormalityIf X were normal, P(|Z| ≥ 1.5) ≈ 0.134 (13.4%). Chebyshev's bound of 44.4% is about 3.3 times larger — the price of distribution-free generality. For a k = 2 deviation (24 points), Chebyshev gives P ≤ 0.25, while the normal gives P ≈ 0.046.

Strengths, Limitations & Comparative Analysis

Comparison of Markov and Chebyshev inequalities
FeatureMarkov InequalityChebyshev Inequality
Inputs RequiredE[X] only (first moment)E[X] and Var(X) (first two moments)
Constraints on XX ≥ 0 (nonnegative)Any X with finite variance
Tail Decay RateO(1/a) — linearO(1/k²) — quadratic
Bound TypeOne-sided: P(X ≥ a)Two-sided: P(|X − μ| ≥ k)
Sharp?Yes — extremal is two-point massYes — extremal is three-point mass
Practical TightnessOften very loose for continuous distributionsModerate; significantly better than Markov but weaker than Chernoff-type bounds
⚖️ WHEN TO USE WHICH
Markov's inequality is the right tool when you know only a mean or when the random variable is nonnegative and you need a quick, conservative bound. Chebyshev is the upgrade when variance information is available and you want a tighter, two-sided guarantee. For sub-Gaussian or bounded random variables, move to Hoeffding or Chernoff bounds for exponential tail decay — but remember, those require stronger assumptions. In research, the Markov–Chebyshev pair often serves as a first-pass sanity check before deploying more specialized tools.

Connections to Advanced Concentration Theory

The Markov and Chebyshev inequalities sit at the base of a rich hierarchy of concentration inequalities. By applying Markov's inequality to etX rather than to X itself, one derives the Chernoff bound P(X ≥ a) ≤ inft>0 e−ta MX(t), where MX(t) = E[etX] is the moment generating function. This exponential optimization typically yields bounds that decay as e−ca² — exponentially tighter than polynomial moment bounds.

Hierarchy of tail bounds: more information yields tighter decay
InequalityInformation UsedTail Decay
MarkovE[X] (first moment)O(1/a)
ChebyshevE[X], Var(X) (first two moments)O(1/a²)
Higher-moment MarkovE[|X|ⁿ] (nth moment)O(1/aⁿ)
ChernoffMGF (all moments)e⁻ᶜᵃ (exponential)
HoeffdingBounded range [a, b] + independencee⁻²ⁿᵗ² (exponential in n)

In modern probability and statistics, Chebyshev's inequality also serves as the engine behind the weak law of large numbers. If X₁, X₂, …, Xn are i.i.d. with mean μ and variance σ², then the sample mean X̄n has variance σ²/n. Applying Chebyshev's inequality gives P(|X̄n − μ| ≥ ε) ≤ σ²/(nε²) → 0 as n → ∞, establishing convergence in probability. This elegant application demonstrates how a simple moment bound yields one of probability theory's most celebrated convergence results.

Practice Problems

PROBLEM 1CONCEPTUAL
Explain why Markov's inequality requires the random variable X to be nonnegative. Construct a specific example of a random variable that is not nonnegative for which the Markov bound P(X ≥ a) ≤ E[X]/a fails.
PROBLEM 2BASIC CALCULATION
A nonnegative random variable X has E[X] = 15. Use Markov's inequality to bound P(X ≥ 45). Then use Chebyshev's inequality to bound P(|X − 15| ≥ 30) given that Var(X) = 100.
PROBLEM 3INTERMEDIATE
Let X be a nonnegative random variable with E[X] = 4 and E[X²] = 25. (a) Compute Var(X). (b) Use Chebyshev's inequality to bound P(X ≥ 10). (c) Also apply Markov's inequality directly and compare the two bounds.
PROBLEM 4APPLIED
A manufacturing process produces components with a mean lifetime of μ = 5000 hours and standard deviation σ = 800 hours. Using Chebyshev's inequality, determine the minimum probability that a randomly selected component lasts between 3000 and 7000 hours. Compare this with the guarantee from the empirical rule if lifetimes were normally distributed.
PROBLEM 5CRITICAL THINKING
Prove the one-sided Chebyshev inequality (also called the Cantelli inequality): for a random variable X with mean μ and variance σ², show that P(X − μ ≥ t) ≤ σ²/(σ² + t²) for any t > 0. Hint: apply Markov's inequality to (X − μ + c)² for an optimally chosen constant c > 0.

Summary

The Markov inequality bounds the tail probability of a nonnegative random variable using only its first moment (mean): P(X ≥ a) ≤ E[X]/a. It decays as O(1/a) and is sharp — achieved by a two-point mass distribution. The Chebyshev inequality strengthens this by incorporating the variance (second moment), yielding a two-sided bound P(|X − μ| ≥ kσ) ≤ 1/k² with quadratic decay. Chebyshev is derived by applying Markov to (X − μ)², illustrating the powerful transformation technique that generalizes to higher-moment and exponential (Chernoff) bounds.

Both inequalities are distribution-free — they require no assumption about the shape of the distribution, only moment conditions. This universality makes them indispensable in settings where the distribution is unknown or intractable. Chebyshev's inequality directly proves the weak law of large numbers, and both results serve as foundational building blocks for the modern theory of concentration inequalities used throughout high-dimensional statistics, machine learning, and theoretical computer science.

Varsity Tutors • Statistics Graduate Level • Markov & Chebyshev Inequalities