Topics

The normal distribution is one of the most important probability models in statistics, but it is often justified with an inaccurate slogan: "many things in nature are normal."
Many real distributions are skewed, heavy-tailed, discrete, multimodal, truncated, or mixtures. The Gaussian distribution matters for deeper reasons: it arises naturally from quadratic models, additive noise assumptions, maximum-entropy arguments under fixed mean and variance, and central-limit approximations.
Definition
A random variable $X$ has a normal distribution with mean $\mu$ and variance $\sigma^2$ if its density is
We write
The parameter $\mu$ controls location and $\sigma$ controls scale.
The distribution is symmetric about $\mu$, with mean, median, and mode all equal to $\mu$.
Standardization
If
then
has the standard normal distribution,
Standardization converts probability questions for any Gaussian variable into questions about one reference distribution.
Linear combinations
Gaussian variables have a powerful closure property.
If $X$ is multivariate normal and $a$ is a fixed vector, then
is normally distributed.
If independent variables satisfy
then their sum is exactly normal:
This exact stability under addition is one reason Gaussian models are mathematically convenient.
Central limit theorem
The central limit theorem does not say that raw data become normal when the sample is large.
A standard IID version says that if $X_1,X_2,\ldots$ have finite mean $\mu$ and finite nonzero variance $\sigma^2$, then
Equivalently, for large $n$,
The approximation concerns the distribution of the sample mean across repeated samples.
It does not imply that the underlying observations are Gaussian.
How fast does the CLT work?
There is no universal sample size at which the normal approximation becomes adequate.
Convergence is faster for well-behaved distributions and slower for highly skewed or heavy-tailed distributions.
If the variance is infinite, the classical finite-variance CLT does not apply.
Berry-Esseen bounds quantify convergence under stronger moment conditions, illustrating that approximation quality depends on distributional shape as well as $n$.
The 68-95-99.7 rule
For an exact normal distribution,
and
These are properties of Gaussian distributions, not universal empirical laws.
Applying them mechanically to skewed or heavy-tailed data can be seriously misleading.
Gaussian noise models
A regression model is often written
The Gaussian assumption gives a likelihood and exact finite-sample inference under the full model.
Ordinary least squares itself does not require Gaussian errors to define coefficient estimates.
Large-sample inference may remain valid under weaker conditions with appropriate variance estimation.
Maximum entropy
Among continuous distributions on the real line with fixed mean and variance, the Gaussian has maximum differential entropy.
This gives one principled reason for using it when only first and second moments are specified and no other structure is assumed.
It does not prove that observed data are Gaussian.
Log-normal is not normal
If
then $X$ is log-normal.
The original variable is positive and right-skewed.
Many biological, economic, and multiplicative processes are more naturally modeled on a log scale than by a symmetric normal distribution.
Mixtures
Even if subpopulations are approximately Gaussian, the pooled distribution need not be.
A mixture
can be skewed or multimodal.
This is why statements such as "human heights are normal" should be qualified by population, sex, age, and sampling frame.
Normality tests are not model-selection switches
Tests such as Shapiro-Wilk can detect tiny departures from normality in large samples and have low power in small samples.
A rejection does not imply that every Gaussian-based procedure is invalid.
The relevant question is which assumption the intended estimator or test needs, and whether the departure materially affects inference.
Plots, robust methods, transformations, and sensitivity analysis are often more informative than a binary normality-test decision.
A typed Python example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from __future__ import annotations
import numpy as np
from numpy.typing import NDArray
from scipy.stats import norm
def normal_pdf(
x: NDArray[np.float64],
mean: float,
std: float,
) -> NDArray[np.float64]:
"""Evaluate a Gaussian probability density."""
if std <= 0:
raise ValueError("std must be positive")
return norm.pdf(x, loc=mean, scale=std)
rng = np.random.default_rng(42)
samples = rng.exponential(scale=1.0, size=(10_000, 40))
sample_means = np.mean(samples, axis=1)
The exponential observations are not normal. Their sample means become approximately Gaussian as the sample size increases, which illustrates the CLT correctly.
Conclusion
The normal distribution is not important because the world is universally bell-shaped.
It is important because it is mathematically stable, arises naturally in additive models, supports useful likelihood methods, and appears as an asymptotic distribution for many normalized sums and estimators.
The right question is not
Is my dataset normal?
but
Which part of my statistical procedure relies on a Gaussian approximation, and is that approximation good enough for the claim I want to make?
References
- Feller, W. (1968). An Introduction to Probability Theory and Its Applications.
- Casella, G., & Berger, R. L. (2002). Statistical Inference.
- Wasserman, L. (2004). All of Statistics.
Embed interactive plots, widgets, and demos using <figure>, <iframe>, or <div class="interactive-embed"> containers. Ensure each embed includes descriptive captions for accessibility.
How to cite
Use the quick export buttons to save citations for reference managers or copy the formatted text directly.
Diogo Ribeiro (2024). The Normal Distribution: Why the Bell Curve Appears. Faculty of Media Arts and Design, Technical University of Porto. https://diogoribeiro7.github.io/mathematics/normal_distribution/.


