Files
myWiki/concepts/martingale-clt.md

55 lines
1.7 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "鞅中心极限定理 (Martingale CLT)"
created: 2026-06-17
updated: 2026-06-17
type: concept
tags: [probability, mathematics, theory, clt]
sources: [raw/papers/tiwari-ticks-to-flows-2026.md]
confidence: high
---
# 鞅中心极限定理 (Martingale CLT)
鞅 CLT 是将经典中心极限定理推广到**鞅差序列**的版本。在 [[ticks-to-flows|Ticks-to-Flows]] 论文中,它是证明梯度更新量服从条件高斯分布的核心工具。
## 什么是鞅
Martingale是满足以下性质的随机过程 `{M_n}`
```
E[M_{n+1} | F_n] = M_n
```
即:在已知过去信息 `F_n` 的条件下,下一步的期望值等于当前值。"公平游戏"的数学抽象。
鞅差:`D_n = M_n - M_{n-1}`,满足 `E[D_n | F_{n-1}] = 0`
## 经典 vs 鞅 CLT
| 条件 | 经典 CLT | 鞅 CLT |
|------|---------|--------|
| 独立同分布 | ✓ | ✗ |
| 条件期望为 0 | N/A | ✓ |
| 条件方差稳定 | N/A | ✓Lindberg 条件) |
鞅 CLT 要求更弱——只需要条件(而非无条件)独立性。
## 在 Ticks-to-Flows 中的应用
1. **条件 CLT**:在大宽度 NN 下,梯度更新量 `Δv_{t,τ}` 在给定状态轨迹的条件下服从高斯分布
2. **对应 LLN**同时使用鞅大数定律LLN获得均值的确定表达式
3. **O(1/sqrt(n)) 误差**:通过 Berry-Esseen 类定理量化收敛速度
## 证明结构
流程:`Itô-Taylor 展开 → 状态多项式 → 鞅 CLT → 条件高斯极限`
其中鞅 CLT 是"多项式 → 高斯"这一步的关键桥梁。
## 参考
- [[ito-calculus|Itô 微积分]]
- [[infinite-width-limit|无限宽度极限]]
- [[stochastic-differential-equation|SDE]]
- [[ticks-to-flows|Ticks to Flows]]