Model random phenomena using binomial, normal, and Poisson distributions.
A probability distribution describes how probability is distributed across the values of a random variable. Discrete distributions (like binomial and Poisson) deal with countable outcomes; continuous distributions (like the normal) assign probabilities to intervals.
Binomial Distribution
Poisson Distribution
Use Binomial when n and p are given. Use Poisson when only the average rate ฮป is given.
10 fair coin flips. P(exactly 3 heads) = C(10,3)ยท(0.5)ยณยท(0.5)โท = 120ยท(1/1024) โ 0.117.
Remember This!
Normal approximation to the binomial is valid when np โฅ 10 and n(1โp) โฅ 10. Apply the continuity correction: P(X โค k) โ P(Z โค (k + 0.5 โ np)/โ(np(1โp))).
A fair coin is flipped 8 times. What is P(exactly 2 heads)?