Comprehensive theory, key formulas, diagrams, and memory aids for Probability Distributions.
In earlier topics, we calculated probabilities for individual events from scratch. However, mathematicians noticed that certain types of random experiments occur so frequently in the real world that they follow predictable, standardized mathematical patterns.
Instead of deriving the probability from scratch every time, we can use these standardized models, known as Theoretical Probability Distributions. In this section, we will cover the most common discrete probability distributions: the Bernoulli, Binomial, and Poisson distributions.
The simplest of all probability distributions is the Bernoulli distribution. It models a single trial of a random experiment that has exactly two possible outcomes.
Any experiment that fits this criteria is called a Bernoulli Trial. * Examples: Flipping a coin (Heads = Success, Tails = Failure), testing a lightbulb (Works = Success, Defective = Failure), passing or failing an exam.
Properties of a Bernoulli RV: * Expected Value: $E(X) = p$ * Variance: $Var(X) = p \cdot q$
What happens if you perform a Bernoulli trial not just once, but multiple times in a row? This brings us to the Binomial Distribution.
The Binomial Distribution models the number of successes ($x$) in a fixed number of independent Bernoulli trials ($n$).
If a random variable $X$ follows a binomial distribution, the probability of getting exactly $x$ successes in $n$ trials is given by:
$$ P(X = x) = \binom{n}{x} p^x q^{n-x} $$
Example: A biased coin has a 60% chance of landing on Heads. If you flip it 5 times, what is the probability of getting exactly 3 Heads? * $n = 5$ * $x = 3$ * $p = 0.6$ * $q = 0.4$ * $P(X = 3) = \binom{5}{3} (0.6)^3 (0.4)^2 = 10 \times (0.216) \times (0.16) = 0.3456$ (or 34.56%).
While the Binomial distribution models the number of successes in a fixed number of trials, the Poisson Distribution models the number of successes (or events) occurring in a fixed interval of time or space.
The Poisson distribution is often used to model rare events or rates of occurrence where $n$ is theoretically infinite and $p$ is very small.
If a random variable $X$ follows a Poisson distribution with an average rate of $\lambda$ (lambda) occurrences per interval, the probability of exactly $x$ occurrences is:
$$ P(X = x) = \frac{e^{-\lambda} \lambda^x}{x!} $$
A unique and defining mathematical characteristic of the Poisson distribution is that its mean and variance are equal! * Mean (Expected Value): $\mu = \lambda$ * Variance: $\sigma^2 = \lambda$ * Standard Deviation: $\sigma = \sqrt{\lambda}$
Example: A call center receives an average of 4 calls per minute. What is the probability of receiving exactly 2 calls in a randomly selected minute? * $\lambda = 4$ * $x = 2$ * $P(X = 2) = \frac{e^{-4} 4^2}{2!} = \frac{0.0183 \times 16}{2} = 0.1465$ (or 14.65%).
While the distributions above are discrete, the Normal Distribution (the famous "bell curve") is the most important continuous probability distribution.
It is symmetric, centered around its mean ($\mu$), and its spread is determined by its standard deviation ($\sigma$). Due to the Central Limit Theorem, many natural phenomena (heights, test scores, measurement errors) naturally follow a normal distribution, making it the cornerstone of modern statistics.