🎲  Normal Distribution

Normal Distribution#

The bell-shaped Gaussian distribution defined by its mean and variance.

Important

✨ AI-generated content. This page was written with the assistance of an AI language model and is provided as a learning aid. Despite careful review, it may still contain mistakes, omissions, or out-of-date information. Whether you are new to the topic, a team lead, or a senior practitioner, treat it as a starting point rather than an authoritative reference: read it critically and independently verify anything you act on (code, commands, figures, and factual claims) against official documentation and primary sources before relying on it.

What it is#

The normal (Gaussian) distribution is the continuous, bell-shaped, symmetric distribution defined by two parameters — the mean \(\mu\) (its center) and the standard deviation \(\sigma\) (its spread; variance \(\sigma^2\)):

\[X \sim \mathcal{N}(\mu, \sigma^2).\]

Its mean, median and mode coincide, and it extends from \(-\infty\) to \(+\infty\).

The density#

\[f(x) = \frac{1}{\sigma\sqrt{2\pi}} \exp\!\left(-\frac{(x-\mu)^2}{2\sigma^2}\right).\]

About 68% of values lie within \(1\sigma\) of the mean, 95% within \(2\sigma\), and 99.7% within \(3\sigma\) (the 68–95–99.7 rule). Standardizing with \(z = (x-\mu)/\sigma\) maps any normal onto the standard normal \(\mathcal{N}(0, 1)\), so a single table serves all.

Why it’s everywhere#

The Central Limit Theorem — averages of many independent, finite-variance quantities tend toward a normal — makes it the default model for measurement errors and aggregates. But it has light tails: with heavy-tailed data or frequent outliers (e.g. Cauchy, Pareto) it fits poorly and least-squares methods grow unreliable.


Theme: Probability & Statistics Foundations  ·  All terminology



See also

Source article Adapted (context, re-expressed) in our own words from: Normal Distribution (insightful-data-lab.com).

Tags: purpose: reference topic: terminology level: beginner