The Normal Distribution
Statistics & ProbabilityWhere this fitsContinues from Probability Distributions, which built the PMF/PDF/CDF machinery. This note zooms in on the normal (Gaussian) distribution, the single most important continuous distribution, and everything that follows from it: the standard normal variate, Z-tables, the empirical rule, and where it shows up in data science.
Normal distribution (Gaussian distribution)
The normal distribution, also called the Gaussian distribution or the bell curve, is the single most important continuous probability distribution.
The shape and its parts

- The x-axis holds the values of the random variable.
- The y-axis holds probability density.
- The peak sits at the mean.
- The two ends are called tails. A tail never touches the x-axis; it only reaches it at infinity.
Core summary: most points sit near the center, and fewer points sit far from the center on either side.
Parameters
A normal distribution is fully identified by two parameters:
| Parameter | Symbol | Controls |
|---|---|---|
| Mean | the center / location of the curve | |
| Standard deviation | the spread / width of the curve |
If you know and and the data is normal, you can draw the whole graph.
Why is it so important?
Because it is genuinely common in nature (that is why it is called “normal”). Heights of people, weights of objects, IQ scores, and many man-made phenomena follow it. Over decades statisticians kept drawing PDFs from different domains and kept getting this same curve, so they studied it deeply. Now, discovering that your data is normal makes you comfortable, because everything about it is already known.
The PDF equation
In the whole equation, only and are parameters. is a constant (3.14), and x is the input.
Intuition for where the equation comes from:
- Start with (exponential growth). Add a minus sign, , for decay. Square it, , and you already get a bell-shaped curve, because pushing
xfar in either direction makesyshrink fast. - The term shifts the curve so it can sit anywhere (handles location).
- Dividing by lets the variance scale the width (handles spread).
- The front factor exists only to force the total area under the curve to equal 1, as every PDF must.
Effect of the parameters
- Changing shifts the curve left or right along the x-axis; height and shape stay the same.
- Increasing makes the curve shorter and wider (more spread); decreasing it makes the curve taller and narrower.

Standard normal variate (standard normal distribution)
A standard normal variate is a special case of the normal distribution where:
It is denoted by Z, and its center sits at 0.
Its equation is just the normal PDF with and plugged in:
Standardization (Z-score)
Any normal distribution can be converted into the standard normal variate. Take every point and apply:
This is mean-centering (subtract the mean) followed by scaling (divide by the standard deviation). The result has mean 0 and standard deviation 1.
Titanic age columnThe age column is roughly normal with mean ≈ 29 and sd ≈ 14. Apply to every value. Plot the KDE of the new values: the peak now sits at 0, and the spread runs in units of 1, 2, 3. The new mean is ≈ 0 and the new sd is exactly 1.
Why standardize? Two big benefits
- You can compare two different normal distributions side by side, even if they originally had different means and scales.
- You can look up any in-between probability instantly, because all probability values for the standard normal are pre-computed in Z-tables.
Using Z-tables to find probabilities
A Z-table stores, for every z value, the area under the curve to the left of that z, i.e. . That area is the probability (or percentage).
Worked example 1: taller than 72 inches
Male heights are normal with , . Find .
- Compute the Z-score:
- Look up 1.33 in the positive Z-table: row 1.3, column 0.03 gives 0.9082.
- That is , the area to the left.
- We want the right side: .
So about 9% of males are taller than 72 inches.
Worked example 2: deriving the empirical rule
For any normal distribution, what percent of data lies between the mean and one standard deviation above it ( to )?
- Z-score of : . Table value at 0.00 is 0.50 (50%).
- Z-score of : . Table value at 1.00 is 0.8413 (84.13%).
- Difference: .
By symmetry, the range to also holds 34.13%. Together, one standard deviation on each side holds about 68%.
The empirical rule (68–95–99.7 rule)
For any normal distribution:
| Range | Percentage of data |
|---|---|
| ≈ 68% | |
| ≈ 95% | |
| ≈ 99.73% |

This is extremely powerful. If you know only that a data set is normal, you can guarantee that ~99.73% of it lies within 3 standard deviations of the mean, just by looking. Everything beyond that is a candidate outlier.
Properties of the normal distribution
- Symmetric around the mean; the two halves are mirror images, so a probability on one side gives you the other side.
- Mean = Median = Mode, all three are exactly equal for a proper normal distribution.
- Empirical rule holds (68–95–99.7).
- Total area under the curve = 1 (true of every PDF, but worth remembering here).
Outliers and standard deviationsAnalysts studying batting scores found that most batsmen cluster near the center of a normal distribution, while an all-time great like Don Bradman sat around 5 standard deviations away from the population, the very definition of an outlier.
CDF of the normal distribution
Since the normal distribution has a PDF, it also has a CDF. It looks like a smooth S-curve (sigmoid) rising from 0 to 1.
- For curves with the same mean but different standard deviations, a smaller sd keeps the CDF steep near the center; a larger sd spreads it out.
- Reading it: at x = 0 (the mean of a standard normal), the CDF gives 0.5, meaning 50% of data is at or below the mean.
The equation is the PDF integrated from up to the point x:
The integral just accumulates the area under the PDF up to that point.
Where the normal distribution is used in data science
- Outlier detection. Using the empirical rule, any point outside is in the extreme ~0.03% region, so it can be treated as an outlier.
Example
On the Titanic age column (roughly normal), compute and . Passengers older than 73 can be flagged as outliers.
- ML algorithm assumptions. Algorithms like linear regression and Gaussian mixture models assume normally distributed input (for linear regression, the residuals/errors are assumed normal). Feeding normal data improves their performance.
- Hypothesis testing. Many statistical tests assume the data is normally distributed.
- Central Limit Theorem (preview). If you take any non-Gaussian distribution and repeatedly sample from it, the distribution of the sample means turns out to be normal. This is the backbone of inferential statistics.
Summary
- The normal distribution is defined by (center) and (spread), is symmetric with mean = median = mode, and is common in nature.
- Its PDF is ; changing shifts it, changing widens or narrows it.
- The standard normal variate (Z, with , ) is obtained by standardizing (); it enables comparison and Z-table lookups.
- A Z-table gives the area to the left of a z value (), which is the probability.
- The empirical rule (68–95–99.7) holds for any normal distribution and powers outlier detection.
- The normal CDF is a smooth S-curve; the distribution underpins outlier detection, ML assumptions, hypothesis testing, and the CLT.
Continues toReal data is rarely perfectly normal. The next note measures how far a distribution departs from normal with skewness, kurtosis, and normality checks.