Characteristic Function
Statement
For a real-valued random variable on a probability space , the characteristic function is
where is the CDF of . The characteristic function:
- Always exists (since ).
- Satisfies and .
- Is uniformly continuous on .
- Uniquely determines the distribution of (inversion theorem).
For the standard Gaussian :
In particular for : .
Visualization
: with probability , with probability .
Numerical table ():
| | (exact) | | |-----|---------------------|--------------| | | | | | | | | | | | | | | | | | | | |
The characteristic function of the sum of two independent Bernoulli(1/2) random variables:
This equals the characteristic function of , recovering the distribution of the sum.
Proof Sketch
Existence and normalization. . At : , so .
Uniform continuity. For any : . By the dominated convergence theorem (dominator = 2) and as , continuity follows.
Inversion (Lévy inversion formula). Given , one recovers via: .
Connections
The characteristic function is the Fourier transform of the distribution. The Central Limit TheoremCentral Limit TheoremStandardized sums of i.i.d. finite-variance random variables converge in distribution to the standard normalRead more → is most cleanly proved by showing pointwise — the characteristic function of . The Lévy continuity theorem converts pointwise convergence of into Weak Convergence (Distribution)Weak Convergence (Distribution)A sequence of probability measures converges weakly if integrals of bounded continuous functions convergeRead more →.
Lean4 Proof
import Mathlib.MeasureTheory.Measure.CharacteristicFunction
import Mathlib.MeasureTheory.Measure.MeasureSpace
open MeasureTheory Complex
/-- The characteristic function of a probability measure equals 1 at t = 0.
Mathlib: `MeasureTheory.charFun_zero` composed with
`IsProbabilityMeasure.measure_univ` and `Measure.real`. -/
theorem charFun_at_zero
{E : Type*} [SeminormedAddCommGroup E] [InnerProductSpace ℝ E]
(μ : Measure E) [IsProbabilityMeasure μ] :
charFun μ (0 : E) = 1 := by
simp [charFun_zero, Measure.real, IsProbabilityMeasure.measure_univ,
ENNReal.one_toReal]Referenced by
- Weak Convergence (Distribution)Probability
- Central Limit TheoremProbability
- Chernoff BoundProbability