In the realm of probability, certain discrete probability distributions emerge repeatedly due to their fundamental nature and wide applicability. These distributions serve as building blocks for modeling a vast array of random phenomena. We now delve into some of the most important discrete distributions, exploring their properties, characteristics, and applications.
Bernoulli Distribution (2.5.1)
The Bernoulli distribution is the simplest non-trivial discrete distribution. It models a single trial with two possible outcomes, often labeled “success” and “failure”. Let’s denote these outcomes as 1 (success) and 0 (failure). A random variable following a Bernoulli distribution takes the value 1 with probability (the success probability) and the value 0 with probability (the failure probability).
Formally, a random variable with range and density function
is said to be Bernoulli-distributed. We denote this as .
Properties of Bernoulli Distribution:
-
Expectation: The expected value of a Bernoulli random variable is simply its success probability :
-
Variance: The variance of a Bernoulli random variable is given by:
The Bernoulli distribution is the foundation for many other discrete distributions, as it models the most basic random trial. It is used extensively in modeling binary events, such as coin flips, success/failure of experiments, or the state of a binary variable.
Binomial Distribution (2.5.2)
The binomial distribution arises when we repeat a Bernoulli trial multiple times and count the number of successes. Consider performing independent Bernoulli trials, each with success probability . Let be the random variable representing the total number of successes in these trials. Then follows a binomial distribution.
Formally, a random variable with range and density function
is said to be binomially distributed. We denote this as .
Derivation of Binomial Distribution:
The probability of getting exactly successes in trials involves two components:
-
Number of ways to choose x successes: There are ways to choose which trials out of will be successes.
-
Probability of a specific sequence with x successes: The probability of any specific sequence with successes and failures is , due to the independence of trials.
Combining these components yields the binomial density function.
Properties of Binomial Distribution:
-
Expectation: The expected number of successes in Bernoulli trials is:
-
Variance: The variance of a binomial random variable is:
The binomial distribution is widely used in modeling counts of successes in a fixed number of independent trials, such as the number of heads in a fixed number of coin tosses, the number of defective items in a sample, or the number of clicks on an online advertisement in a given number of impressions.
Geometric Distribution (2.5.3)
The geometric distribution models the number of trials needed to achieve the first success in a sequence of independent Bernoulli trials. Consider repeatedly performing Bernoulli trials with success probability until the first success occurs. Let be the random variable representing the number of trials needed to get the first success. Then follows a geometric distribution.
Formally, a random variable with range and density function
is said to be geometrically distributed. We denote this as .
Derivation of Geometric Distribution:
For (first success on the -th trial), we must have failures followed by one success. The probability of this sequence is , due to independence.
Properties of Geometric Distribution:
-
Expectation: The expected number of trials to get the first success is:
-
Variance: The variance of a geometric random variable is:
-
Memorylessness: The geometric distribution possesses a unique property called memorylessness. It states that the probability of waiting for more trials to get the first success, given that we have already had failures, is the same as the probability of waiting trials from the beginning. Formally, for all :
The geometric distribution is used to model waiting times until the first occurrence of an event, such as the number of trials until the first success in a process, the waiting time for a customer to be served, or the number of attempts until a task is completed.
Poisson Distribution (2.5.4)
The Poisson distribution models the number of events occurring in a fixed interval of time or space, given that these events occur independently and at a constant average rate. It is particularly useful for rare events occurring in a large population or over a long period.
Formally, a random variable with range and density function
where is a parameter representing the average rate of events, is said to be Poisson-distributed. We denote this as .
Properties of Poisson Distribution:
-
Expectation: The expected number of events in the interval is:
-
Variance: The variance of a Poisson random variable is also equal to its parameter :
Poisson Approximation to Binomial: The Poisson distribution can be seen as a limiting case of the binomial distribution when the number of trials is large, the success probability is small, and the product remains constant. In such cases, the binomial distribution can be approximated by the Poisson distribution .
The Poisson distribution is widely used in modeling rare events, such as the number of phone calls arriving at a call center in an hour, the number of radioactive decays in a given time interval, the number of typos on a page, or the number of accidents at an intersection in a year.
These important discrete distributions—Bernoulli, binomial, geometric, and Poisson—provide a powerful toolkit for modeling and analyzing a wide range of random phenomena. Understanding their properties and applications is crucial for probabilistic reasoning and algorithm design.
Prev: 03 Random Variables, Expectation, Variance | Next: 05 Multiple Random Variables