Normal Distributions
Model symmetric continuous variation with a normal density. Standardize interval calculations, transform and sum normal variables, understand when normal approximations arise, and connect covariance to Mahalanobis geometry.
The normal distribution is a continuous model for symmetric variation around a center. Its mathematical stability under affine transformations and sums makes it central to probability, statistics, measurement models, and many machine learning approximations. A bell-shaped histogram alone does not establish that the model is appropriate.
Center and Scale Determine the Density
Write , where and . Its density is:
“The density of at is one over sigma times the square root of two pi, multiplied by the exponential of negative over .” The squared distance controls how quickly density falls away from the mean.
The mean sets the center, the variance is , and standard deviation sets horizontal scale. The density is symmetric:
A larger spreads the same total probability over a wider range and therefore lowers the peak. The support is the entire real line, even though far-tail probabilities become very small.
Exercise: Compare normal-distribution spread
Two normal distributions have the same mean. Distribution A has standard deviation and distribution B has standard deviation . Which is more spread out?
Select one choice, then check.
HintSeparate location from scale
Compare the standard deviations rather than the means.
SolutionUse the larger scale parameter
Distribution B is more spread out because its standard deviation is . Equal means align the centers but do not make the widths equal.
Standardization Produces a Standard Normal Variable
The transformation:
shifts the mean to zero and rescales standard deviation to one. Thus . A realized value has z-score:
which measures signed distance from the mean in standard deviations.
Exercise: Standardize a value
A normal variable has mean and standard deviation . What is the z-score of ?
Compute it first, then check your number.
HintKeep the signed difference
Calculate .
SolutionExpress distance in standard deviations
The standardized value is:
The negative sign places the observation two standard deviations below the mean.
Interval Probabilities Use the Standard Normal CDF
Let be the standard normal cumulative distribution function. It has no elementary closed-form expression, so software or numerical tables evaluate it. Standardization gives:
“Standardize the upper endpoint and read its accumulated standard-normal probability, then subtract the accumulated probability through the standardized lower endpoint.” The subtraction leaves probability only inside the requested interval.
Useful approximate central probabilities are:
These are approximations for a normal model, not universal rules for every distribution.
Exercise: Use symmetry around the normal mean
For any normal variable, what is ?
Compute it first, then check your number.
HintSplit a symmetric continuous density at its center
The mean is also the median of a normal distribution.
SolutionHalf the probability lies on each side
Symmetry and continuity give:
Including the exact midpoint does not add point mass.
Exercise: Estimate a central normal probability
Suppose is normally distributed. Approximately what probability lies between and ?
Compute it first, then check your number.
HintUse the central-probability approximation
The interval extends two standard deviations on either side of the mean.
SolutionUse the two-standard-deviation interval
For a normal distribution,
Thus about of the probability lies in this interval.
Affine Transformations Preserve Normality
If and , then:
If independent variables , their sum is also normal:
Independence is required for the simple variance sum; correlated normal variables contribute covariance terms.
Exercise: Transform a normal variable
If and , what is ?
Compute it first, then check your number.
HintSquare the scaling factor
Use .
SolutionScale variance by four
Since and ,
The shift by changes the mean but not the variance.
Exercise: Find the variance of a normal sum
Let and be independent. What is ?
Compute it first, then check your number.
HintAdd variances under independence
The second parameters are variances, not standard deviations.
SolutionAdd the two variances
Independence removes the covariance term, so
The sum is therefore normally distributed with variance .
Why Normal Approximations Often Arise
A sum of independent normal variables is exactly normal. Sums and averages of many other independent variables may be approximately normal under suitable conditions. This tendency is formalized by versions of the central limit theorem. It helps explain why normal models often describe measurement error and the sampling behavior of averages even when the individual observations are not normal.
This is not a rule that every large dataset becomes normal. Strong dependence, very heavy tails, one dominant contribution, or distributions that change across observations can make the approximation poor. Later statistics lessons will state the relevant conditions more carefully.
Multivariate Normal Geometry
A -dimensional normal vector is written:
The mean vector sets the center and covariance matrix sets spread and orientation. Equal-density contours are ellipses in two dimensions and ellipsoids in higher dimensions. Diagonal covariance produces axis-aligned contours; nonzero off-diagonal covariance rotates them.
When is invertible, the density is:
“The multivariate normal density is a normalizing factor determined by the dimension and covariance, multiplied by an exponential whose negative exponent is one half of the squared Mahalanobis distance from the mean.”
The quadratic expression
is the squared Mahalanobis distance from to the mean. Unlike ordinary Euclidean distance, it measures displacement relative to the scales and correlations described by . Points with the same Mahalanobis distance lie on the same density contour.
For a multivariate normal distribution, zero covariance implies independence between components. This implication is special to the jointly normal model and is not true for arbitrary variables.
Exercise: Interpret a covariance contour
In a two-dimensional normal model, what do nonzero off-diagonal covariance entries generally change?
Select one choice, then check.
HintRecall covariance as paired variation
Components that vary together produce tilted rather than axis-aligned contours.
SolutionCovariance couples directions of variation
Nonzero off-diagonal entries generally rotate the elliptical contours, expressing correlated variation between coordinates. They do not change the requirement that the complete density integrate to one.
Compare Center, Scale, and Shape
Explore normal densities and a two-dimensional sample
Change means, standard deviations, or correlation. Compare one-dimensional density scale with multivariate contour orientation.
Ready to run.
A Normal Distribution Is a Modeling Assumption
Real data are not normal merely because a histogram looks roughly bell-shaped. Skewness, heavy tails, truncation, mixtures, outliers, bounded support, or changing variance may contradict the model. Parameter estimates and tail probabilities can be especially sensitive to these differences.
Use a normal model when its symmetric, unbounded variation is justified well enough for the intended calculation. State whether normality describes raw measurements, noise, an estimator, a latent variable, or an approximation; these are different claims.
Before Using a Normal Model
Track whether the second parameter denotes variance or standard deviation, standardize before using , and calculate probabilities from area rather than density height. Inspect support, symmetry, tails, dependence, and the data-generating process instead of relying on visual resemblance alone.
The chapter review now places the discrete and continuous families side by side. Later subjects introduce additional distributions when a new kind of count, waiting time, or uncertain parameter requires one.