Theorem Statement
Assumptions
- (M_n) is a martingale
- martingale increments are bounded almost surely by constants c_k
Proof Sketch
Treat the centered increments as a martingale difference sequence and control each conditional exponential moment from the bounded-increment assumption. Iterating the conditional MGF bound gives a sub-Gaussian MGF for the martingale difference sum. Chernoff optimization then yields the one-sided tail; a second application to the negative martingale gives the two-sided display.
Proof Obligations
Adapted martingale differences with bounded increments
assumptionVerify the filtration, adaptedness, conditional-mean-zero property, and increment bounds before replacing iid assumptions with Azuma-Hoeffding.
A learner-history process that is merely centered marginally is not enough for the martingale tail theorem.
- source
- wainwright-2019:cor2.20
- diagnostic
- question:adaptive-not-iid-mds-004
Iterated conditional MGF control
proof stepThe proof repeatedly conditions on the past, applies the bounded-increment exponential-moment bound, and then uses Chernoff optimization.
Factoring MGFs as if the increments were iid would prove the wrong theorem for adaptive sequences.
- source
- wainwright-2019:cor2.20
Worst-case increment scale, not variance-adaptive
boundaryAzuma-Hoeffding uses the sum of squared increment bounds; variance-sensitive behavior needs Freedman or Bernstein-style martingale tools.
Using Azuma as a calibrated variance estimate can make adaptive diagnostic uncertainty look sharper than it is.
Conditional mean zero is stronger than marginal zero
boundaryCheck the martingale-difference condition against the learner history filtration; marginal centering alone is not enough.
Treating adaptively chosen increments as merely average-zero can invalidate the conditional MGF iteration.
- source
- wainwright-2019:cor2.20
- diagnostic
- question:adaptive-not-iid-mds-004
Source Locators
Concentration Inequalities (2013)
proofChapter 3 — Bounded differences and exponential concentration
boucheron-lugosi-massart-2013:ch3
- kind
- chapter
- review
- reviewed / B
- extract
- manual
Chapter-level support for bounded-difference and martingale concentration arguments, including Azuma-Hoeffding-style bounds.
High-Dimensional Statistics (2019)
proofCorollary 2.20 — Azuma-Hoeffding
wainwright-2019:cor2.20
- kind
- corollary
- review
- reviewed / A
- extract
- manual
- number
- 2.20
Anchor: Azuma-Hoeffding
Reviewed corollary-level support for the Azuma-Hoeffding martingale tail bound.
Curated Trace
- 1
The theorem applies when each increment has conditional mean zero given the past.
Checkpoint
Check filtration and adaptedness before checking increment bounds.
- 2Conditional MGF controlproof method
Bounded increments supply the exponential-moment control used by Chernoff's method.
Checkpoint
The current Lean artifact verifies a conditional sub-Gaussian one-sided bridge.
- 3Hoeffding-style tailtail conversion
The MGF bound converts into a Gaussian-type deviation inequality.
Checkpoint
The scale is sqrt(sum c_k^2), not a variance-adaptive Freedman scale.
- 4Adaptive replay usesystem use
Adaptive diagnostic analysis needs martingale conditions when iid assumptions fail.
Checkpoint
Do not reuse iid Hoeffding unless the feedback process actually preserves iid sampling.
Failure Modes
Worst-case increment scale, not variance-adaptive
Azuma-Hoeffding uses the sum of squared increment bounds; variance-sensitive behavior needs Freedman or Bernstein-style martingale tools.
Risk: Using Azuma as a calibrated variance estimate can make adaptive diagnostic uncertainty look sharper than it is.
Check: Azuma-Hoeffding uses the sum of squared increment bounds; variance-sensitive behavior needs Freedman or Bernstein-style martingale tools.
Conditional mean zero is stronger than marginal zero
Check the martingale-difference condition against the learner history filtration; marginal centering alone is not enough.
Risk: Treating adaptively chosen increments as merely average-zero can invalidate the conditional MGF iteration.
Check: Check the martingale-difference condition against the learner history filtration; marginal centering alone is not enough.
- source
- wainwright-2019:cor2.20
- diagnostic
- question:adaptive-not-iid-mds-004