Cumulative probability distribution
Cumulative probability distributions
Understanding how probability accumulates across outcomes is central to working with random variables. The definitions below introduce two key concepts you’ll use throughout this section.
Recall from Chapters 4.4 and 4.5 that software can calculate cumulative probabilities for geometric and binomial distributions efficiently:
- geometcdf gives the cumulative probability that the first success occurs on or before the th trial, where is the probability of success on a single trial (geometric distribution).
- binomcdf gives the cumulative probability of or fewer successes in trials, where is the probability of success on a single trial (binomial distribution).
When you’re asked for a cumulative probability, the first step is to recognize the type of distribution involved.
- If the situation is binomial or geometric, you can use the appropriate software function.
- If the probabilities don’t follow a binomial or geometric pattern, you can still find the cumulative probability by adding the relevant individual probabilities.
For a discrete random variable, the general cumulative distribution function is:
Practice problems
Example 1:
Jared has a bowl of five number tiles. He randomly draws one tile with replacement (meaning he puts the tile back before the next draw). Two tiles are labelled point, one is labelled points, one is labelled points, and one is labelled points.
Part a.
What is the probability that Jared obtains exactly one point by drawing from the bowl once?
There are two tiles labelled point out of tiles total. So the probability of drawing exactly one point in a single draw is .
Solution:
The probability of Jared obtaining exactly one point is .
Part b.
What is the probability that Jared obtains less than three points?
“Less than three points” means the outcome is either point or points. These outcomes are mutually exclusive, so we add their probabilities:
Solution:
The probability of Jared obtaining less than three points is .
Example 2:
Suppose Jared has a new bag of number tiles: two tiles labelled point, two tiles labelled points, three tiles labelled points, and three tiles labelled points.
Part a.
If Jared draws from the bag twice, what is the probability that he draws the same number of points both times?
There are four ways to draw the same number twice: two s, two s, two s, or two s. We find the probability of each and add them:
Adding these together:
Solution:
The probability of drawing the same number twice is .
Part b.
If Jared draws from the bag twice, what is the probability that he draws different numbers each time?
You could list all the different-number outcomes, but it’s simpler to use the complement rule. The complement of “different numbers” is “the same number,” and Part a already found that probability:
Solution:
The probability of drawing different numbers is .