Exercise: When the CLT Fails — Cauchy Samples
Prerequisites: Central Limit Theorem, Expectation and Variance
Problem
The standard Cauchy distribution has density for . It has no mean (the integral is conditionally convergent to any desired value) and no variance (the integral of diverges).
-
Simulate independent samples of with i.i.d. standard Cauchy, for . Plot histograms of on the same horizontal scale. What does the histogram of look like as grows — is it concentrating near zero (as the LLN would suggest) or spreading out, or staying the same?
-
A remarkable fact: the average of i.i.d. standard Cauchy random variables is itself standard Cauchy, for every . Verify this numerically by overlaying the standard Cauchy density on each histogram.
-
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.
-
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 — a fact you can cite without proof.Jump to the solution when you're ready.