CONTENTS

Exercise: When the CLT Fails — Cauchy Samples

Problem

The standard Cauchy distribution has density f(x)=π1(1+x2)1f(x) = \pi^{-1}(1 + x^2)^{-1} for xRx \in \mathbb{R}. It has no mean (the integral xf(x)dx\int x f(x)\,dx is conditionally convergent to any desired value) and no variance (the integral of x2f(x)x^2 f(x) diverges).
  1. Simulate N=100,000N = 100{,}000 independent samples of Xˉn=(X1++Xn)/n\bar X_n = (X_1 + \cdots + X_n)/n with XiX_i i.i.d. standard Cauchy, for n{1,10,100,1000}n \in \{1, 10, 100, 1000\}. Plot histograms of Xˉn\bar X_n on the same horizontal scale. What does the histogram of Xˉn\bar X_n look like as nn grows — is it concentrating near zero (as the LLN would suggest) or spreading out, or staying the same?

  2. A remarkable fact: the average of nn i.i.d. standard Cauchy random variables is itself standard Cauchy, for every nn. Verify this numerically by overlaying the standard Cauchy density on each histogram.
  3. Using the result in part 2, explain in one sentence why both the Law of Large Numbers and the Central Limit Theorem fail for Cauchy samples.
  4. A risk manager proposes using sample means of intraday returns as unbiased estimators of expected return. If intraday returns were truly Cauchy-distributed (no mean), what would happen to the sample mean as they collected more data? Why does this matter even though real returns aren't literally Cauchy?

Hint

Use rng.standard_cauchy(size=(N, n)) in NumPy. The stability of the Cauchy under averaging follows from its characteristic function φ(t)=et\varphi(t) = e^{-|t|} — a fact you can cite without proof.
Jump to the solution when you're ready.