Examples of Probability Distribution Examples

Explore practical examples of probability distributions, enhancing your understanding of statistics and their applications.
By Jamie

Introduction to Probability Distributions

Probability distributions are fundamental concepts in statistics that describe how the probabilities of a random variable are distributed. They provide a framework for understanding the likelihood of different outcomes in various scenarios. Below are three diverse and practical examples of probability distributions that illustrate their applications in real-world situations.

1. Coin Tossing: Binomial Distribution

In the context of a simple experiment, consider tossing a fair coin multiple times. This scenario can be modeled using the binomial distribution, which describes the number of successes (heads) in a fixed number of independent Bernoulli trials (coin tosses).

For example, if you toss a coin 10 times, you want to find the probability of getting exactly 6 heads. Here, the number of trials (n) is 10, the number of successes (k) is 6, and the probability of success (p) for each trial (getting heads) is 0.5.

The probability can be calculated using the binomial formula:

[ P(X = k) = \binom{n}{k} p^k (1-p)^{n-k} ]\
Where ( \binom{n}{k} ) is the binomial coefficient.

For our example:
[ P(X = 6) = \binom{10}{6} (0.5)^6 (0.5)^{10-6} ]
[ P(X = 6) = 210 \cdot (0.5)^{10} = 0.205 ]
This means there’s about a 20.5% chance of getting exactly 6 heads in 10 tosses.

Note: If you were to change the number of tosses or the probability of heads (e.g., a biased coin), the results would vary significantly, demonstrating the flexibility of the binomial distribution.

2. Exam Scores: Normal Distribution

The normal distribution, often referred to as the bell curve, is widely used in statistics to represent real-valued random variables whose distributions are not known. A classic example is exam scores in a large class, where most students score around the average, with fewer students scoring very low or very high.

Assume the average score on an exam for 100 students is 75 with a standard deviation of 10. You can use the normal distribution to determine the probability of a student scoring above 85.

Using the Z-score formula:
[ Z = \frac{(X - \mu)}{\sigma} ]
Where ( X ) is the score of interest, ( \mu ) is the mean, and ( \sigma ) is the standard deviation:
[ Z = \frac{(85 - 75)}{10} = 1 ]
Using Z-tables, a Z-score of 1 corresponds roughly to the 84th percentile, meaning approximately 16% of students scored above 85.

Note: Exam scores are a practical application of normal distribution, but many real-world variables (like heights, test scores, etc.) also follow this distribution, making it essential in many fields.

3. Customer Arrivals: Poisson Distribution

The Poisson distribution is used to model the number of events that occur in a fixed interval of time or space. A typical use case is in queuing theory, such as predicting the number of customers arriving at a store in an hour.

Suppose an average of 3 customers arrive at a coffee shop every 15 minutes. To find the probability of exactly 5 customers arriving in a 15-minute period, you can use the Poisson probability mass function:
[ P(X = k) = \frac{e^{-\lambda} \lambda^k}{k!} ]
Where ( \lambda ) is the average rate (3 in this case) and ( k ) is the number of occurrences (5):
[ P(X = 5) = \frac{e^{-3} 3^5}{5!} ]
Calculating this gives:
[ P(X = 5) = \frac{e^{-3} \cdot 243}{120} \approx 0.1008 ]
This indicates there is about a 10.08% chance that exactly 5 customers will arrive in a 15-minute period.

Note: The Poisson distribution can be adjusted for different time intervals, making it versatile for various applications in business and operations management.