← ds learning track
notes · 11

CLT & Correlation

This page connects two ideas that sit at the core of inference and risk modelling: why averages become Normal, and how variables move together. CLT explains the behaviour of sample means; correlation explains the structure between variables.

Start with CLT, then move into covariance and correlation, then compare Pearson vs Spearman, and finally use correlation matrices in a validation context.
Reviewed: 15 July 2026Learning rule: Formulas, plots, and interpretation should be read together.Scope: Statistical explanation; thresholds are contextual, not universal.Simulator note: Synthetic examples are teaching aids, not production estimates.

Why the Normal distribution keeps returning

CLT is one of the reasons statistics works at all. It says that under broad conditions, the mean of many sampled observations tends toward a Normal distribution, even when the original data does not.

The theorem in plain language

Take any population distribution. Draw repeated samples of size n. Compute the mean of each sample.

As n gets larger, the distribution of those sample means becomes approximately Normal.

x̄ ~ N(μ, σ² / n) as n becomes large.

The result is not about the original observations becoming Normal. It is about the sampling distribution of the mean.

Why this matters in practice

CLT is what allows many confidence intervals, z-tests, backtesting bands, and approximation-based validation tools to exist.

In credit risk, observed default rate is a sample mean of default indicators. In portfolio risk, aggregate loss is often the sum of many small random pieces.

Validation context: CLT is most comfortable when observations are independent and no single observation dominates the sample. Dependence and concentration slow convergence.

How to think about CLT correctly

01

Do not confuse population with sample mean

The raw population can stay skewed forever. It is the distribution of repeated sample averages that becomes bell-shaped.

02

Sample size controls precision

The spread of sample means shrinks as n grows. This is why larger samples make the mean more stable.

03

Skewed sources converge more slowly

A heavily skewed source may need much larger n before the Normal approximation becomes operationally safe.

04

Dependence complicates everything

If observations are strongly dependent, CLT still may hold under special conditions, but convergence becomes much less straightforward.

Watch the sample mean become Normal

Choose a source distribution, set the sample size, and repeatedly draw samples. The top chart shows the source population shape. The bottom chart shows the distribution of sample means.

How fast does CLT converge?

Not all source distributions converge at the same speed. A symmetric source reaches approximate normality much faster than a heavily skewed one.

|Skewness of x̄| vs sample size

Uniform Exponential Bimodal U-shaped

Interpretation

The lower the absolute skewness of the sample-mean distribution, the closer it is to a bell curve.

Uniform and already-symmetric sources converge quickly. Exponential takes longer because the original asymmetry is stronger.

Validation implication: for small, skewed, or concentrated portfolios, the usual Normal approximation behind z-style backtesting can be weaker than it looks.
Illustrative simulator pattern—not a universal cutoff:
symmetric sources often settle sooner
skewed or heavy-tailed sources need more data
dependence, infinite variance, or concentration can invalidate the simple i.i.d. CLT story

How variables move together

Once you leave one-variable uncertainty and start looking at two variables together, the language changes from variance to covariance and correlation.

Covariance

Covariance asks whether X and Y move above and below their means together. Positive means same direction. Negative means opposite direction.

Cov(X,Y) = E[(X−μx)(Y−μy)]

Pearson

Pearson correlation standardises covariance. It measures linear association and always sits between −1 and +1.

ρ = Cov(X,Y) / (σx · σy)

Spearman

Spearman applies Pearson to ranks instead of levels. It measures monotonic association and is more robust to outliers and non-normality.

ρs = Pearson(rank(X), rank(Y))

See where Pearson and Spearman disagree

The gap between Pearson and Spearman is often more informative than either statistic alone. It tells you something about curvature, monotonicity, and outlier sensitivity.

Correlation matrices and validation reading

Correlation matrices turn pairwise relationships into a compact map. In model development and validation, they are one of the fastest ways to check dependence structure and multicollinearity risk.

Heatmap

How to read the matrix

The diagonal is always 1.0. The matrix is symmetric. What matters are the off-diagonal relationships.

High predictor-to-predictor correlation can signal multicollinearity. Low predictor-to-target correlation can signal weak standalone information.

Validation context: in a scorecard or IRB model review, you check the matrix to understand whether predictors are redundant, unstable, or structurally dependent in a way that will make coefficients fragile.

Correlation measures compared

Measure Range Captures Robust? Typical use
Pearson[−1, +1]Linear associationNoContinuous, roughly well-behaved variables
Spearman[−1, +1]Monotonic associationMoreRanks, skewed data, outlier-prone settings
Kendall τ[−1, +1]ConcordanceMoreSmall samples, tied ranks, conservative dependence reading
Point-biserial[−1, +1]Continuous vs binaryNoPredictor vs default flag type analysis
Partial correlation[−1, +1]Conditional linear relationNoControlling for confounders
Autocorrelation[−1, +1]Serial dependenceNoTime series, residual checks, macro evolution
Asset correlation[0, 1] oftenSystematic dependenceN/APortfolio loss, IRB / Vasicek style dependence

Correlation sits inside the capital formula

Correlation and sampling-distribution theory are not background details here — one is hard-wired into the regulatory capital formula, while the other determines when asymptotic back-tests and confidence intervals are trustworthy.

The IRB formula is built on asset correlation

The Basel/CRR risk weights feed a prescribed asset correlation R into the asymptotic single-risk-factor model (for example, a PD-dependent 0.12–0.24 range for many corporate exposures, with specific treatments and retail formulas). It separates systematic dependence from diversifiable idiosyncratic risk.

Validator lens: the prescribed correlation is a regulatory input, not a bank estimate. The ASRF formula assumes a highly granular portfolio; name and sector concentration that violate that assumption need separate concentration-risk assessment, often under Pillar 2.

CLT supports approximations—not every back-test

Under suitable independence or weak-dependence and finite-variance conditions, sampling distributions become approximately Normal as effective sample size grows. That supports z-style intervals and normal approximations in module 12. An exact binomial test does not need the CLT; rare events, dependence, concentration, or very small expected counts are reasons to prefer exact, resampling, or carefully justified Bayesian methods (module 16).

Easy miss: applying a normal-approximation confidence interval to a grade with three defaults gives a confident, meaningless number.
Correlation is not causation — and Pearson only sees the linear, average-time relationship. In a downturn what hurts is tail dependence: variables that look mildly correlated in normal times move together violently in a crisis. That is why copulas and stress correlations, not the single Pearson coefficient, drive serious risk work.

Concepts every validator should keep

clt

CLT is an approximation, not magic

It becomes powerful under the right conditions, but concentration, dependence, and heavy tails can make the approximation much slower or less reliable.

dependence

Correlation is not causation

Co-movement does not explain mechanism. It only tells you how variables behave together inside the sample.

shape

No single coefficient replaces a scatter plot

Pearson and Spearman can both miss non-linear structure. Visual inspection remains part of serious analysis.

time series

Autocorrelation changes the game

Serial dependence breaks the usual independence story and can distort standard errors and inference.

portfolio risk

Asset correlation drives tail concentration

In portfolio models, correlation is not a side detail. It is one of the main drivers of diversification or concentration.

multicollinearity

Correlation between predictors matters

Even when model fit looks acceptable, highly correlated predictors can make coefficients unstable and interpretation unreliable.

What to leave this page with

CLT explains why means become stable and approximately Normal. Correlation explains how variables move together.

The useful order is: first understand the sampling distribution of the mean, then understand covariance, then compare Pearson and Spearman, then read full correlation matrices.

Once those pieces connect, inference and dependence stop looking like separate topics and start behaving like one system.

Primary references

Definitions and current regulatory statements were checked against official documentation. Library pages describe concepts and APIs; they are not substitutes for model-specific validation.