The standard normal distribution
In a nutshell
The standard normal distribution is a normal distribution with mean μ=0 and variance σ2=1. Every other normal distribution can be transformed to the standard normal distribution using coding. It is important to know the standard normal distribution, Z, as it can help solve problems that have unknown mean or standard deviation.
Notation
The standard normal distribution is often written as Z. So Z∼(0,1).
The cumulative probability P(Z≤a) is often written as Φ(a).
Coding with Z
If X∼N(μ,σ2), then it is possible to transform each probability of X into one in terms of Z, where Z∼(0,1) using the formula:
Z=σX−μ
Example 1
Given that X∼N(10,2.52), and that P(X≤7)=Φ(a), find the value of a.
Rearrange the coding formula to make X the subject:
Z=σX−μ⟺X=μ+σZ
Substitute this into the probability involving Z:
P(X≤7)=P(μ+σZ≤7)=P(10+2.5Z≤7)=P(2.5Z≤−3)=P(Z≤−2.53)=P(Z≤−1.2)=Φ(−1.2)
a=−1.2
Note: The answer to P(X≤7) under the normal distribution X∼N(10,2.52) should match the answer to P(Z≤−1.2) or Φ(−1.2) under the standard normal distribution Z∼(0,1) which you can verify using a calculator as 0.115 (3 s.f.).