Algebra 101 - Unit 14

Lesson 91: Probability Distributions (Binomial, Normal)

A probability distribution shows how probabilities are assigned to outcomes of a random process. In this lesson, we focus on two important distributions: binomial (discrete, repeated trials) and normal (continuous, bell-shaped).

Binomial Distribution

The binomial distribution models the probability of getting exactly \(k\) successes in \(n\) independent trials, each with probability \(p\) of success.

\( P(X = k) = \binom{n}{k} p^k (1-p)^{n-k} \)

Example: A coin is flipped 5 times. What is the probability of exactly 2 heads? \( P(X=2) = \binom{5}{2} (0.5)^2 (0.5)^3 = 10(0.25)(0.125) = 0.3125 \).

Normal Distribution

The normal distribution is a continuous distribution shaped like a bell curve, centered at the mean \(\mu\) with spread measured by standard deviation \(\sigma\).

\( f(x) = \frac{1}{\sigma \sqrt{2\pi}} e^{ -\frac{(x-\mu)^2}{2\sigma^2} } \)

Example: Heights of adult men are approximately normal with mean 70 in and standard deviation 3 in. About 95% of men are between 64 in and 76 in.

More Examples

Binomial Example — Basketball Free Throws:

A player makes 80% of free throws. If they take 10 shots, what is the probability they make exactly 8? \( P(X=8) = \binom{10}{8} (0.8)^8 (0.2)^2 = 45(0.1678)(0.04) ≈ 0.302 \).

Normal Example — Test Scores:

SAT scores are normally distributed with mean 1050 and σ = 100. What percentage of students score above 1250? Standardize: \( z = (1250 - 1050)/100 = 2 \). From z-tables, \( P(Z > 2) ≈ 0.0228 \). So about 2.3%.

Practice Problems

  1. Flip a coin 6 times. Find the probability of getting exactly 3 heads.
  2. A die is rolled 12 times. What is the probability of rolling exactly 2 sixes?
  3. In a binomial distribution with \(n = 20, p = 0.4\), find \(P(X=8)\).
  4. Heights of women are normally distributed with mean 64 in and σ = 2.5 in. What proportion are taller than 67 in?
  5. Test scores have mean 80 and σ = 10. Find the probability a student scores between 70 and 90.