Cumulative distribution function (CDF) for standard normal: Φ(z)=P(Z≤z).
Key empirical rule (68-95-99.7):
P(μ−σ≤X≤μ+σ)≈0.6827
P(μ−2σ≤X≤μ+2σ)≈0.9545
P(μ−3σ≤X≤μ+3σ)≈0.9973
Interpretation: these percentages describe how data from a normal distribution typically spread around the mean when using standard deviations as units.
Relationship to standard normal table (z-table): the table gives values of (\Phi(z)), the left-tail probabilities for z.
Practical usage: to compute probabilities for a nonstandard normal, transform to z and use the z-table or software.
Reading the standard normal table (z-table)
What the table shows:
Each row corresponds to a z-value to one decimal place (e.g., -1.2, -1.3, …).
Each column corresponds to the second decimal place (e.g., .00, .01, .02, …).
The body (inside the table) gives the cumulative probability from the far left up to z, i.e., (\Phi(z)).
How to read a value:
Example: z = 1.23. Find row 1.2 and column .03; the table entry is Φ(1.23).
For negative z, use symmetry: (\Phi(-z) = 1 - \Phi(z)).
pnorm(q, mean, sd) gives (\Phi) for the corresponding parameters.
qnorm(p, mean, sd) gives the inverse CDF (the z/quantile for probability p).
rnorm(n, mean, sd) generates random samples from N(mean, sd^2).
Other software (e.g., Minitab) provides similar capabilities for computing areas and quantiles.
Practical note: In education, recognizing the pdf and its components, and knowing how to combine with z-scores and the CDF, is often more important than memorizing calculus proofs.
PDF, CDF, and interpretation details
Normal PDF components explained:
Denominator: (\sqrt{2\pi}\,\sigma) scales the width; (\sqrt{2\pi}) is a normalization constant.
Exponential term: exp(−2σ2(x−μ)2) determines the bell shape centered at (\mu).
The term ( (x-\mu)^2 ) shows the squared distance from the mean.
The parameter (\mu) shifts the center; the parameter (\sigma) stretches/compresses the width.
For a standard normal, the PDF is: ϕ(z)=2π1exp(−2z2).
The fundamental property: the area under the entire pdf curve equals 1 (total probability): ∫−∞∞f(x)dx=1.
The idea of probability as area under the curve applies to all PDFs, not only the normal distribution.
Key takeaways for exam-ready understanding
Distinguish discrete vs. continuous probabilities: only intervals have positive probability for continuous vars.
For any PDF, total probability is 1 and P(a ≤ X ≤ b) is the area under f(x) between a and b.
The normal distribution is fully characterized by (μ, σ):
Centered at μ; spread by σ.
Standardization enables using the standard normal table or software.
Z-scores measure how many standard deviations an observation is from the mean: Z=σX−μ.
Interpretations using the 68-95-99.7 rule help quick assessments, but exact probabilities use Φ(z).
When given nonstandard normal parameters, convert to Z and use Φ to find probabilities.
Be comfortable with reading and using z-tables, and know how to compute probabilities via left-tail, right-tail, and interval probabilities through Φ values and complements.
Familiarize yourself with common software commands for probability calculations (pnorm, qnorm, rnorm in R) to quickly obtain probabilities, quantiles, and random samples.