08. Alpha-Stable Distributions — The Universal Law of Heavy Tails
Distribution 3/3. Alpha-stable (α-stable, Lévy stable) distributions are a four-parameter family defined by the stability axiom that "their shape does not change under independent sums." They include Gaussian and Cauchy distributions as special cases and provide the CLT limits for infinite-variance data. Background: characteristic functions, stability and the generalized CLT.
Definition: the stability axiom
A random variable is stable if, for independent copies and arbitrary , there exist some such that
There must then exist an exponent for which satisfies . This is the stability index, and it governs the character of the distribution.
- : —additivity of variance, hence the Gaussian
- : the world of infinite variance and heavy tails
As guaranteed by the generalized CLT, stable distributions are all the possible limits of i.i.d. sums. If the Gaussian is "the universal limit in the finite-variance world," the alpha-stable family is the complete list of universal limits after removing that condition.
Defining them with characteristic functions
Except for three special cases, alpha-stable distributions have no closed-form density. Their characteristic functions, however, always have a closed form. In the standard parameterization (1-parameterization) of ,
where for , and for .
The roles of the four parameters:
| Parameter | Range | Role |
|---|---|---|
| Tail thickness (smaller means thicker) | ||
| Skewness (positive emphasizes the right tail) | ||
| Scale | ||
| Location |
The structure becomes clear in the symmetric case (, ):
Substituting gives (Gaussian), and gives (Cauchy). One expression continuously connects the two distributions.
Three special cases with closed-form densities
| Name | Density | |
|---|---|---|
| Gaussian | — becomes irrelevant | |
| Cauchy | ||
| Lévy | , —completely skewed to one side |
The Lévy distribution describes the time at which Brownian motion first reaches a given level (first hitting time), and is the standard model of "a wait whose mean waiting time is infinite."
Properties: a world governed by
Tails and moments
When , the tail decays polynomially (as a power law):
Immediate consequences (see the hierarchy of moments):
- is finite only for
- : variance is always infinite
- : even the mean does not exist (the Cauchy belongs here)
The practice of "measuring risk with standard deviation" is fundamentally impossible within this family. takes over the role of scale, and quantile-based measures such as VaR become practical alternatives.
Additivity (reproductive property)
The sum of independent stable variables with the same is again a stable variable with the same . In particular, for i.i.d. ,
It grows as rather than . For the Cauchy with , the sum is proportional to —meaning that the sample mean has the same distribution as a single observation. This is precisely the phenomenon in which the LLN becomes powerless.
Self-similarity and Lévy processes
A stochastic process with stable increments (a Lévy flight or -stable Lévy process) is self-similar: . Unlike the continuous paths of Brownian motion (), jumps are fundamental when —paths consist of sudden leaps, which is why these processes are used to model market crashes, animal foraging (Lévy flight foraging), and anomalous diffusion.
Where are they used?
| Area | Phenomenon | Basis |
|---|---|---|
| Finance | Heavy tails of log returns (Mandelbrot's study of cotton prices) | Extreme movements occur dozens of times more often than Gaussian predictions |
| Signal processing | Model of impulsive noise (underwater acoustics and atmospheric noise) | Power-law spikes |
| Networks | Traffic bursts and file-size distributions | Aggregation of power-law tails |
| Physics | Anomalous diffusion and Lévy flights | Self-similarity + jumps |
| ML | Robust learning under heavy-tailed noise and heavy-tail analysis of SGD noise | Empirical studies in which gradient noise exhibits |
Practical caution: because second-order statistics such as sample variance and sample correlation do not converge in models, estimation uses characteristic-function-based methods (for example, empirical CF fitting), quantile-based methods (McCulloch), or maximum likelihood (numerical density calculation).
Sampling — Chambers–Mallows–Stuck (CMS)
Exact sampling is possible even without a density. In the symmetric case (), if and are independent, then
follows a standard symmetric -stable distribution. Setting degenerates to the Box–Muller transform—the fact that Gaussian sampling is a special case of CMS is another facet of "Gaussian ⊂ alpha-stable."
scipy.stats.alpha is a separate univariate distribution with density and is unrelated to the α-stable family on this page. Alpha-stable distributions are provided as scipy.stats.levy_stable. This is an easy source of confusion when moving between the literature and libraries.
Summary of the three distributions — the series conclusion
| Gaussian | Beta | Alpha-stable () | |
|---|---|---|---|
| Support | (or a half-line) | ||
| Defining axiom | CLT limit / maximum entropy / stability () | Conjugacy / order statistics / Gamma ratio | Stability (closure under sums) |
| Tail | (ultralight) | None (bounded) | (power law) |
| Moments | Every order | Every order | Only |
| Closed-form density | Yes | Yes | Only three special cases |
| Fundamental tool | MGF/characteristic function | Beta/Gamma functions | Characteristic function (the only means) |
| Representative role | Fluctuations of sums, noise | Distribution of probabilities, Bayesian state | Phenomena dominated by extremes |
The unifying sentence is: axioms create distributions. Once the generative principle—"what is being summed?" (Gaussian and alpha-stable) or "what is being counted?" (Beta)—is understood, the density formula is only a consequence.
What to remember from this page
- The single stability axiom determines the entire four-parameter family, and governs the tails.
- There is no closed-form density, but the characteristic function is always closed form—definition, estimation, and computation all happen in characteristic-function space.
- Gaussian (), Cauchy (), and Lévy () are the three special cases with closed-form densities.
- Variance is infinite when , and even the mean is absent when —an entire region where second-order statistical methods collapse.
- Sums of heavy-tailed data converge to alpha-stable distributions at scale (generalized CLT)—the Gaussian CLT is its special case.