Skip to content

Weak LLN 1

The simplest Weak Law of Large Numbers: for uncorrelated random variables with a common mean and uniformly bounded variances, the sample average converges to the mean in L2L^2 (hence in probability). The proof is a one-line variance computation followed by Chebyshev.

A triangular array indexes the variables by two parameters: a row nn and a column knk \le n.

X1,1X2,1X2,2X3,1X3,2X3,3\begin{array}{ccccc} X_{1,1} & & & & \\ X_{2,1} & X_{2,2} & & & \\ X_{3,1} & X_{3,2} & X_{3,3} & & \\ \vdots & & & \ddots & \end{array}

The nn-th row has nn entries, and the joint law on the nn-th row may depend on nn. The Weak LLN extends naturally to this setting.

When the entries lack finite variance (heavy tails), the L2L^2 argument above breaks. The standard fix is to truncate each Xn,kX_{n,k} at a threshold bnb_n, apply the finite-variance argument to the truncated variables, and control the probability that truncation changes anything.

The two hypotheses have clear interpretations:

  • *(1) says that on the nn-th row, no single entry exceeds the threshold bnb_n with non-negligible total probability. This forces the truncated sum to equal the untruncated sum with probability tending to 11.
  • *(2) says that even after the truncation has bounded each entry by bnb_n, the second moments are still small enough relative to bn2b_n^2 for the variance argument to work.

Centering at ana_n (the mean of the truncated sum) rather than at E[Sn]\mathbb{E}[S_n] is essential: when E[Xn,k]\mathbb{E}[X_{n,k}] might not exist, ana_n is the only available centering.