Markov's Inequality
Statement
For any non-negative random variable and any :
Equivalently in measure-theoretic form: for a non-negative -almost-everywhere measurable and ,
Visualization
Consider rolling a fair six-sided die, so each with probability .
Markov's inequality with :
| Bound type | Value |
|---|---|
| Exact | |
| Markov upper bound |
The bound is loose here because the die is not concentrated near zero — Markov is tight only for distributions that put all mass at and .
| Exact | Markov bound | |
|---|---|---|
| 2 | (trivial) | |
| 4 | ||
| 5 | ||
| 6 |
Proof Sketch
Observe that pointwise for . Integrating both sides:
That is the entire proof.
Connections
Markov's inequality is the building block for Chebyshev's InequalityChebyshev's InequalityA random variable rarely deviates from its mean by more than a few standard deviationsRead more →, which applies Markov to the squared deviation . It underlies concentration inequalities throughout probability theory. The measure-theoretic statement connects naturally to the Lebesgue integral machinery used in Hausdorff DimensionHausdorff DimensionMeasuring the fractional dimension of self-similar setsRead more → and Iterated Function SystemsIterated Function SystemsConstructing fractals via contractive affine transformationsRead more → via their underlying measure spaces.
Lean4 Proof
The proof below is verified against Mathlib v4.28.0. The key lemma is MeasureTheory.mul_meas_ge_le_lintegral₀ from Mathlib.MeasureTheory.Integral.Lebesgue.Markov.
mul_meas_ge_le_lintegral₀ is proved in Mathlib by the pointwise inequality and monotone integration.
Lean4 Proof
import Mathlib.MeasureTheory.Integral.Lebesgue.Markov
namespace MoonMath
open MeasureTheory
/-- **Markov's inequality** (ENNReal form).
For a non-negative AE-measurable function `f` and threshold `ε`,
`ε * μ {x | ε ≤ f x} ≤ ∫⁻ x, f x ∂μ`. -/
theorem markov_inequality
{α : Type*} {m : MeasurableSpace α} (μ : Measure α)
{f : α → ℝ≥0∞} (hf : AEMeasurable f μ) (ε : ℝ≥0∞) :
ε * μ {x | ε ≤ f x} ≤ ∫⁻ x, f x ∂μ :=
mul_meas_ge_le_lintegral₀ hf ε
end MoonMathReferenced by
- Jensen's Inequality (Convex)Optimization
- Borel-Cantelli LemmaProbability
- Bayes' TheoremProbability
- Chebyshev's InequalityProbability
- Holder's InequalityProbability
- Chernoff BoundProbability
- Shannon EntropyInformation Theory