The normal distribution, often called the Gaussian or bellcurve, is one of the most important probability distributions in statistics. It describes how the values of a random variable are spread around a central value (the mean) in a symmetric, unimodal shape. Because many natural and social phenomena tend to cluster around an average, the normal distribution appears repeatedly in science, engineering, economics, and everyday life.
The probability density function (PDF) of a normal random variable X with mean and standard deviation is:
f(x) = 1 / ((2)) e^{-(x) / (2)} Where:
When = 0 and = 1, the distribution is called the standard normal distribution and is denoted Z. Converting any normal variable X to Z is straightforward:
Z = (X ) /
This standardization allows the use of universal Ztables (or software functions) to find probabilities.
The CLT states that the sum (or average) of a large number of independent, identically distributed random variables with finite mean and variance tends toward a normal distribution, regardless of the original distribution. This is why sample means, measurement errors, and many aggregate quantities look normal.
Random errors in physical measurements are often the result of many tiny, independent disturbances (e.g., instrument noise, human reading error). The combined effect follows a normal pattern.
Characteristics such as heights, blood pressure, and IQ scores cluster around an average because genetics, nutrition, and environment each contribute small, independent effects.
Before applying methods that require normality, analysts usually assess the data:
While versatile, the normal distribution is not suitable for:
In those cases, alternative distributions (lognormal, exponential, beta, tdistribution, etc.) may be more appropriate.
function randNormal(mean = 0, std = 1) { // BoxMuller transform let u1 = Math.random(); let u2 = Math.random(); let z0 = Math.sqrt(-2.0 * Math.log(u1)) * Math.cos(2 * Math.PI * u2); return z0 * std + mean;} This function produces numbers that follow a normal distribution with the specified mean and standard deviation.
The normal distribution is a cornerstone of statistical theory and practice. Its symmetric bellshaped curve, simple mathematical form, and the powerful Central Limit Theorem make it the default model for many random phenomena. Understanding its properties, how to check for normality, and when to seek alternatives equips you to use statistical methods wisely and interpret results accurately.
