Nate's Notes

Collection of notes for various classes I've taken.

Buy Me A Coffee

October 13

Normal (Gaussian) Distribution

A continuous probability distribution defined by its mean ($\mu$) and variance ($\sigma^2$). It is characterized by its symmetric, bell-shaped curve.

The Standard Normal Distribution

A special case of the normal distribution where the mean is 0 and the standard deviation is 1.

Z-Scores

A z-score measures the number of standard deviations a data point ($x$) is from the mean ($\mu$). It’s used to standardize any normal distribution, allowing us to use a single table (the Z-table) to find probabilities.

Finding Probabilities using Z-Scores

Probabilities for a normal distribution correspond to the area under the curve. To find this area:

  1. Calculate the z-score for the given value(s) of $X$.
  2. Look up the z-score in a standard normal (Z) table or use a calculator to find the cumulative probability, $P(Z \le z)$.

The Empirical Rule (68-95-99.7)

A useful approximation for the area under the curve for values falling within 1, 2, or 3 standard deviations of the mean.


Examples

Problem: Test scores are normally distributed with a mean of 80 and a standard deviation of 5. So, $X \sim N(80, 5^2)$.

  1. What is the probability a student scores 75 or less?
    • Calculate z-score: $Z = \frac{75 - 80}{5} = -1.0$
    • Find probability: $P(X \le 75) = P(Z \le -1.0)$
    • From a Z-table, $P(Z \le -1.0) \approx 0.1587$.
    • Answer: There’s a 15.87% chance.
  2. What is the probability a student scores between 82 and 90?
    • Calculate z-scores:
      • For $x=82$: $Z_1 = \frac{82 - 80}{5} = 0.4$
      • For $x=90$: $Z_2 = \frac{90 - 80}{5} = 2.0$
    • Find probabilities from Z-table:
      • $P(Z \le 2.0) \approx 0.9772$
      • $P(Z \le 0.4) \approx 0.6554$
    • Calculate the difference: $P(82 \le X \le 90) = P(Z \le 2.0) - P(Z \le 0.4) = 0.9772 - 0.6554 = 0.3218$.
    • Answer: There’s a 32.18% chance.