Achievable logoAchievable logo
AP Statistics
Sign in
Sign up
Purchase
Textbook
Practice exams
Support
How it works
Resources
Exam catalog
Mountain with a flag at the peak
Textbook
Introduction
1. One variable data
2. Two variable data
3. Data collection
4. Probability and random variables
4.1 Law of large numbers
4.2 Introduction to probability
4.3 Expected value, variance, and standard deviation
4.4 Binomial distribution
4.5 Geometric distribution
4.6 Cumulative probability distribution
5. Sampling distributions
6. Categorical data
7. Quantitative data
8. Chi-square
9. Linear regression
Wrapping up
Achievable logoAchievable logo
4.6 Cumulative probability distribution
Achievable AP Statistics
4. Probability and random variables
Our AP Statistics course is currently in development and is a work-in-progress.

Cumulative probability distribution

4 min read
Font
Discuss
Share
Feedback

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.

Definitions
Probability distribution
An equation, function, table, or graph that links the outcomes of a survey or another type of statistical experiment with the probability of each outcome. Cumulative probability distribution
Gives the probability that a random variable X is less than or equal to a certain value.

Recall from Chapters 4.4 and 4.5 that software can calculate cumulative probabilities for geometric and binomial distributions efficiently:

  • geometcdf (p,x) gives the cumulative probability that the first success occurs on or before the xth trial, where p is the probability of success on a single trial (geometric distribution).
  • binomcdf (n,p,x) gives the cumulative probability of x or fewer successes in n trials, where p 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:

F(x)=P(X≤x)=k=0∑x​P(X=k)

This general formula also works for geometric and binomial distributions. In those special cases, though, it’s usually faster to use the software functions instead of adding many individual probabilities.

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 1 point, one is labelled 2 points, one is labelled 3 points, and one is labelled 5 points.

Part a.

What is the probability that Jared obtains exactly one point by drawing from the bowl once?

There are two tiles labelled 1 point out of 5 tiles total. So the probability of drawing exactly one point in a single draw is 52​.

Solution:

(spoiler)

The probability of Jared obtaining exactly one point is 52​.

Part b.

What is the probability that Jared obtains less than three points?

“Less than three points” means the outcome is either 1 point or 2 points. These outcomes are mutually exclusive, so we add their probabilities:

P(X=1)P(X=2)P(X≤2)​=52​=51​=P(X=1)+P(X=2)=52​+51​=53​​

Solution:

(spoiler)

The probability of Jared obtaining less than three points is 53​.

Example 2:

Suppose Jared has a new bag of 10 number tiles: two tiles labelled 1 point, two tiles labelled 2 points, three tiles labelled 3 points, and three tiles labelled 4 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 1s, two 2s, two 3s, or two 4s. We find the probability of each and add them:

P(both one point)P(both two points)P(both three points)P(both four points)​=102​⋅91​=902​=102​⋅91​=902​=103​⋅92​=906​=103​⋅92​=906​​

Adding these together:

P(same number)​=902​+902​+906​+906​=9016​=458​​

Solution:

(spoiler)

The probability of drawing the same number twice is 458​.

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:

P(different numbers)​=1−P(same number)=1−458​=4537​​

Solution:

(spoiler)

The probability of drawing different numbers is 4537​.

Probability distributions

  • Link outcomes to their probabilities (equation, function, table, or graph)
  • Discrete random variables: use probability mass functions

Cumulative probability distribution

  • Gives P(X≤x) for random variable X
  • Formula: F(x)=∑k=0x​P(X=k)
  • Applies to all discrete distributions

Software functions for cumulative probability

  • geometcdf(p,x): cumulative probability for geometric distribution (first success on or before xth trial)
  • binomcdf(n,p,x): cumulative probability for binomial distribution (x or fewer successes in n trials)
  • Use software for binomial/geometric; otherwise, sum individual probabilities

Finding cumulative probabilities

  • Identify the distribution type (binomial, geometric, or other)
  • For non-binomial/geometric: add relevant individual probabilities
  • Events “X=k” are mutually exclusive (can add probabilities)

Complement rule

  • P(X>x)=1−P(X≤x)
  • Useful for “greater than” probability questions

Worked examples

  • Probability of specific outcomes: count favorable outcomes, divide by total
  • Probability of “less than” or “at most”: sum probabilities for all qualifying outcomes
  • Probability of “same” or “different” outcomes in repeated draws:
    • “Same”: sum probabilities for each repeated value
    • “Different”: use complement rule (1−P(same))

Sign up for free to take 6 quiz questions on this topic

Previous
Next  | 5.1 Calculations for the normal distribution
All rights reserved ©2016 - 2026 Achievable, Inc.

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.

Definitions
Probability distribution
An equation, function, table, or graph that links the outcomes of a survey or another type of statistical experiment with the probability of each outcome. Cumulative probability distribution
Gives the probability that a random variable X is less than or equal to a certain value.

Recall from Chapters 4.4 and 4.5 that software can calculate cumulative probabilities for geometric and binomial distributions efficiently:

  • geometcdf (p,x) gives the cumulative probability that the first success occurs on or before the xth trial, where p is the probability of success on a single trial (geometric distribution).
  • binomcdf (n,p,x) gives the cumulative probability of x or fewer successes in n trials, where p 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:

F(x)=P(X≤x)=k=0∑x​P(X=k)

This general formula also works for geometric and binomial distributions. In those special cases, though, it’s usually faster to use the software functions instead of adding many individual probabilities.

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 1 point, one is labelled 2 points, one is labelled 3 points, and one is labelled 5 points.

Part a.

What is the probability that Jared obtains exactly one point by drawing from the bowl once?

There are two tiles labelled 1 point out of 5 tiles total. So the probability of drawing exactly one point in a single draw is 52​.

Solution:

(spoiler)

The probability of Jared obtaining exactly one point is 52​.

Part b.

What is the probability that Jared obtains less than three points?

“Less than three points” means the outcome is either 1 point or 2 points. These outcomes are mutually exclusive, so we add their probabilities:

P(X=1)P(X=2)P(X≤2)​=52​=51​=P(X=1)+P(X=2)=52​+51​=53​​

Solution:

(spoiler)

The probability of Jared obtaining less than three points is 53​.

Example 2:

Suppose Jared has a new bag of 10 number tiles: two tiles labelled 1 point, two tiles labelled 2 points, three tiles labelled 3 points, and three tiles labelled 4 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 1s, two 2s, two 3s, or two 4s. We find the probability of each and add them:

P(both one point)P(both two points)P(both three points)P(both four points)​=102​⋅91​=902​=102​⋅91​=902​=103​⋅92​=906​=103​⋅92​=906​​

Adding these together:

P(same number)​=902​+902​+906​+906​=9016​=458​​

Solution:

(spoiler)

The probability of drawing the same number twice is 458​.

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:

P(different numbers)​=1−P(same number)=1−458​=4537​​

Solution:

(spoiler)

The probability of drawing different numbers is 4537​.

Key points

Probability distributions

  • Link outcomes to their probabilities (equation, function, table, or graph)
  • Discrete random variables: use probability mass functions

Cumulative probability distribution

  • Gives P(X≤x) for random variable X
  • Formula: F(x)=∑k=0x​P(X=k)
  • Applies to all discrete distributions

Software functions for cumulative probability

  • geometcdf(p,x): cumulative probability for geometric distribution (first success on or before xth trial)
  • binomcdf(n,p,x): cumulative probability for binomial distribution (x or fewer successes in n trials)
  • Use software for binomial/geometric; otherwise, sum individual probabilities

Finding cumulative probabilities

  • Identify the distribution type (binomial, geometric, or other)
  • For non-binomial/geometric: add relevant individual probabilities
  • Events “X=k” are mutually exclusive (can add probabilities)

Complement rule

  • P(X>x)=1−P(X≤x)
  • Useful for “greater than” probability questions

Worked examples

  • Probability of specific outcomes: count favorable outcomes, divide by total
  • Probability of “less than” or “at most”: sum probabilities for all qualifying outcomes
  • Probability of “same” or “different” outcomes in repeated draws:
    • “Same”: sum probabilities for each repeated value
    • “Different”: use complement rule (1−P(same))

More from Probability and random variables

  • Law of large numbers
  • Introduction to probability
  • Expected value, variance, and standard deviation
  • Binomial distribution
  • Geometric distribution