Weak Law of Large Numbers
About 539 wordsAbout 2 min
2025-08-04
Overview
The Weak Law of Large Numbers (WLLN) is a fundamental theorem in probability theory that describes the behavior of the average of a large number of independent and identically distributed (i.i.d.) random variables.
Statement
Let X1,X2,...,Xn be a sequence of i.i.d. random variables with finite expected value E[Xi]=μ and finite variance V(Xi)=σ2.
Define the sample mean as:
Xˉn=n1i=1∑nXi
The Weak Law of Large Numbers states that for any ϵ>0:
n→∞limP(∣Xˉn−μ∣≥ϵ)=0
Or equivalently:
XˉnPμ as n→∞
This is called convergence in probability.
Proof Using Chebyshev's Inequality
Step 1: Compute the expected value of Xˉn
E[Xˉn]=E[n1i=1∑nXi]=n1i=1∑nE[Xi]=n1⋅nμ=μ
Step 2: Compute the variance of Xˉn
Since the Xi are independent:
V(Xˉn)=V(n1i=1∑nXi)=n21i=1∑nV(Xi)=n21⋅nσ2=nσ2
Step 3: Apply Chebyshev's Inequality
For any ϵ>0:
P(∣Xˉn−μ∣≥ϵ)≤ϵ2V(Xˉn)=nϵ2σ2
Step 4: Take the limit
n→∞limP(∣Xˉn−μ∣≥ϵ)≤n→∞limnϵ2σ2=0
Since probabilities are non-negative, the limit must be exactly 0.
Interpretation
The WLLN tells us that as the sample size increases, the sample mean Xˉn converges in probability to the true mean μ. This means that for large n, the sample mean will be close to the population mean with high probability.
Applications
- Statistics: Justifies using sample averages to estimate population parameters
- Gambling: Explains why casinos have consistent profits
- Insurance: Forms the basis for risk pooling and premium calculation
- Quality Control: Validates using sample means to monitor processes
Relationship to Strong Law
The Strong Law of Large Numbers (SLLN) states almost sure convergence:
P(n→∞limXˉn=μ)=1
The SLLN implies the WLLN, but not conversely. The WLLN is sufficient for most practical applications.
Example: Coin Flipping
For a fair coin with P(Heads)=0.5, let Xi=1 if the i-th flip is heads, 0 otherwise.
- μ=E[Xi]=0.5
- σ2=V(Xi)=0.25
The proportion of heads in n flips is Xˉn. By WLLN:
n→∞limP(∣Xˉn−0.5∣≥ϵ)=0
This means that as we flip the coin more times, the proportion of heads will approach 0.5.
For more details on expectation and variance, see Expectation and Variance.