Probability
3. Continuous Distributions
Standard Normal (Z)

Standard Normal (Z-Distribution)

📏

The Standard Normal distribution is a specific, foundational case of the Normal distribution. It is the universal "ruler" by which all other Normal distributions are measured and compared.

Core Concepts

A Standard Normal distribution is defined simply as a Normal distribution where the mean is exactly 00 and the standard deviation is exactly 11.

We denote this special random variable as ZZ:

ZN(0,1)Z \sim \mathcal{N}(0, 1)

Probability Density Function (PDF)

Because μ=0\mu = 0 and σ=1\sigma = 1, the terrifying PDF of the general normal distribution simplifies dramatically into a much cleaner equation:

ϕ(z)=12πe12z2\phi(z) = \frac{1}{\sqrt{2\pi}} e^{-\frac{1}{2}z^2}

The Z-Score

Why do we care about a distribution locked at 00 and 11? Because any Normal distribution in the universe can be transformed into the Standard Normal distribution using a Z-score.

A Z-score tells you exactly how many standard deviations a specific data point (xx) is away from its mean (μ\mu).

z=xμσz = \frac{x - \mu}{\sigma}

Why is this powerful? (Apples to Oranges)

Imagine you score an 85 on a Math test (where the class mean was 70 and standard dev was 10) and a 90 on an English test (where the class mean was 85 and standard dev was 5). Which test did you actually perform better on relative to your peers?

  • Math Z-score: z=857010=+1.5z = \frac{85 - 70}{10} = +1.5
  • English Z-score: z=90855=+1.0z = \frac{90 - 85}{5} = +1.0
🎉

Even though the raw English score (90) was higher, your Math score was 1.5 standard deviations above the average. By converting them both to Z-scores, you can see that you performed significantly better in Math relative to the rest of the class!

Interactive Visualization

Below is the standard normal distribution (μ=0,σ=1\mu=0, \sigma=1). Use the slider to select a Z-Score and instantly calculate the probability (the area under the curve) to the left or right of that score.

Z-Score Probability

P(Z < 1.0) = 84.13%

Z-Score (z)
1.0
Direction
Left tail

Test Your Knowledge

Example: Calculating a Z-Score

On a standardized test, the mean score is 500 and the standard deviation is 100. If a student scores 750, what is their Z-score? What does this mean?

View Step-by-Step Solution

Z-Score formula: Z=XμσZ = \frac{X - \mu}{\sigma}

Z=750500100=250100=2.5Z = \frac{750 - 500}{100} = \frac{250}{100} = 2.5

This means the student scored exactly 2.5 standard deviations above the mean, placing them in the extreme right tail of the distribution (the top ~0.6% of test takers).