One idea, 4 fields
Probability Distributions
The unifying principle
A random variable takes values in a space . A probability distribution assigns non-negative weight normalized to one:
Everything measurable is an expectation against this measure:
Two moments dominate practice:
A recurring theme is the maximum-entropy / exponential family form. Maximizing entropy under constraints gives
where (the partition function / normalizer) ties everything together. This single template reappears in every field below — only the meaning of and changes.
How it shows up in each field
Maths — the abstract source
The distribution is a measure on a -algebra, characterized by its CDF or density . The Gaussian
is central because of the Central Limit Theorem: sums of many independent finite-variance contributions converge to it. Example: rolling dice, the sum's distribution flattens toward a bell curve as .
Physics — quantum amplitudes and thermal ensembles
Two guises, both distributions:
- Quantum: the wavefunction gives a distribution by the Born rule the probability density of finding a particle at upon measurement.
- Statistical mechanics: the Boltzmann distribution over energy states, is exactly the max-entropy form with and .
Example: particle in a harmonic trap — position measurements scatter as a Gaussian whose width encodes both quantum zero-point motion and thermal energy.
AI-ML — modeling belief and learning by likelihood
Models output distributions, not point guesses. A classifier's softmax is identical to Boltzmann:
with logits playing the role of . Training minimizes cross-entropy = maximizes likelihood, which is minimizing . Uncertainty splits into aleatoric (irreducible, in the data) and epistemic (model's own ignorance, e.g. a posterior over weights).
Example: a Bayesian regressor predicts — wide where data is sparse.
Stock-Market — asset returns and risk
Log-returns are modeled as random variables. The Black–Scholes world assumes them Gaussian, giving lognormal prices
But real returns are fat-tailed (leptokurtic): extreme moves far more likely than Gaussian predicts. Risk is a distributional statement — Value at Risk is just a quantile:
Example: the 2008 crash was a 10σ event under a Gaussian model — proof the tails are wrong, motivating Student-t or jump-diffusion distributions.
Why this bridge matters
- Max-entropy transfers everywhere: recognizing softmax = Boltzmann means physics intuition about temperature (sharpening/smoothing distributions) directly explains ML temperature scaling in sampling and calibration.
- The partition function is the same headache in stat-mech, in Bayesian evidence, and in normalizing energy-based models — techniques to approximate it (MCMC, variational bounds) cross fields freely.
- CLT is a blessing and a trap: it justifies Gaussians in physics measurement noise and portfolio aggregation, but the failure of finite-variance assumptions in markets (fat tails) is the single most important cautionary tale ML risk modeling must inherit.
- Expectation is the universal action verb: quantum observables, thermal averages, model predictions, and expected returns are all — so variance-reduction tricks from Monte Carlo finance help quantum simulation and ML gradient estimation alike.
Connections
- 01-Measure-Theory-and-Random-Variables
- 02-Central-Limit-Theorem
- 03-Maximum-Entropy-and-Exponential-Families
- 04-Born-Rule-and-Wavefunctions
- 05-Boltzmann-Distribution-and-Partition-Function
- 06-Softmax-and-Cross-Entropy
- 07-Bayesian-Inference-and-Uncertainty
- 08-Log-Returns-and-Fat-Tails
- 09-Value-at-Risk-and-Quantiles
#bridge