PrepGo

Introduction to Probability - AP Statistics Study Guide

Written by AP Content Team, Verified for 2026 AP Exams, Last updated: May 2026

Learn with study guides reviewed by top AP teachers. This guide takes about 19 minutes to read.

Quick Summary

This guide introduces the fundamental concepts of probability. You will learn to describe chance processes using sample spaces and events, understand the Law of Large Numbers, and apply basic probability rules like the complement rule. Furthermore, you will master the essential skill of designing and interpreting simulations to estimate probabilities for complex scenarios.

Key Concepts

Probability is the foundation of statistical inference. It provides a language for quantifying uncertainty.

1. The Idea of Probability

  • Probability is a number between 0 and 1 (inclusive) that describes the long-run relative frequency of a chance outcome.

    • A probability of 0 means the event is impossible.

    • A probability of 1 means the event is certain.

    • A probability of 0.5 means the event is equally likely to occur or not occur.

  • We can write probability as a fraction, decimal, or percent. In AP Statistics, we primarily use decimals or fractions.

  • The probability of an event A is denoted as P(A).

  • Short-run vs. Long-run: The probability of an event doesn't predict what will happen in a few trials (short-run), but it does predict the proportion of times the event will occur over many, many trials (long-run). Flipping a coin 10 times might yield 7 heads, but flipping it 10,000 times will yield a proportion of heads very close to 0.5.

2. The Law of Large Numbers (LLN)

  • The Law of Large Numbers states that if we observe more and more repetitions of any chance process, the proportion of times that a specific outcome occurs approaches its true probability.

  • This is the mathematical guarantee that simulation works. By repeating a random process many times, the relative frequency of an outcome in our simulation will give us a good estimate of the true probability.

  • Example: The true probability of a fair coin landing on heads is 0.5. The LLN says that the more times you flip the coin, the closer your cumulative proportion of heads will get to 0.5.

[Image: A line graph showing the cumulative proportion of heads vs. number of coin flips. The line starts erratically and then stabilizes, getting closer and closer to the horizontal line at y=0.5.]

3. Describing Chance: Sample Spaces and Events

  • A sample space (S) is the set of all possible outcomes of a chance process.

    • Example: Rolling a standard 6-sided die. S = {1, 2, 3, 4, 5, 6}.

    • Example: Flipping a coin twice. S = {HH, HT, TH, TT}.

  • An event is any collection of outcomes from some chance process. It is a subset of the sample space.

    • Example: The event "rolling an even number" on a die is the set A = {2, 4, 6}.
  • The probability of an event is the sum of the probabilities of the outcomes in that event, assuming all outcomes are equally likely.

    • P(rolling an even number) = P(2) + P(4) + P(6) = 1/6 + 1/6 + 1/6 = 3/6 = 0.5.

4. Basic Probability Rules

Here are the foundational rules for calculating probabilities.

  • Rule 1: The Range of Probability

    • For any event A, the probability of A is between 0 and 1.

    • Formula:

  • Rule 2: The Sum of All Outcomes

    • The sum of the probabilities of all possible outcomes in a sample space must equal 1.

    • Formula:

  • Rule 3: The Complement Rule

    • The complement of an event A, denoted Aᶜ (or A'), is the event that A does not occur.

    • The Complement Rule states that the probability of an event not occurring is 1 minus the probability that it does occur. This is extremely useful for "at least one" type problems.

    • Formula:

    • Example: If the probability of rain is P(Rain) = 0.3, the probability of no rain is P(No Rain) = 1 - 0.3 = 0.7.

  • Rule 4: Addition Rule for Mutually Exclusive Events

    • Two events A and B are mutually exclusive (or disjoint) if they have no outcomes in common and thus can never occur at the same time.

    • If A and B are mutually exclusive, the probability that A or B occurs is the sum of their individual probabilities.

    • Formula:

    • Example: When rolling one die, the events "rolling a 2" and "rolling a 5" are mutually exclusive. P(2 or 5) = P(2) + P(5) = 1/6 + 1/6 = 2/6.

5. Simulation

  • A simulation is the imitation of a chance process using a model that accurately reflects the situation. It's a powerful tool for estimating probabilities when theoretical calculation is too complex.

  • The Simulation Process (4 Steps):

    1. State the Question: What probability are you trying to estimate?

    2. Plan the Model: Describe how to use a random device (like a random number generator, dice, or a coin) to imitate one trial of the process. Be specific!

      • Assign numbers to outcomes.

      • State what constitutes a single trial.

      • State what variable you are measuring (the "what you're looking for").

    3. Do the Trials: Perform many trials of the simulation. (On the AP exam, results are often provided for you).

    4. Conclude: Use the results of your simulation to answer the question from Step 1. Your answer should be an estimate of the probability.

    • Example: Estimate the probability of a family with 3 children having all girls.

      • State: What is the probability that a family with 3 children has 3 girls?

      • Plan: Let 0 represent a boy and 1 represent a girl. Use a random number generator to generate 3 random integers (0 or 1). One trial consists of generating these 3 numbers. We will record whether all three numbers are 1s.

      • Do: Repeat this process many times (e.g., 100 times). Suppose we get 13 trials that result in (1, 1, 1).

      • Conclude: Based on our simulation, the estimated probability of having 3 girls is 13/100 = 0.13.

Key Vocabulary

  • Probability: A number between 0 and 1 that describes the long-run proportion of times a specific outcome of a chance process would occur in a very long series of repetitions.

  • Law of Large Numbers: The principle that as the number of trials in a random process increases, the experimental probability will approach the theoretical probability.

  • Sample Space: The set of all possible outcomes of a chance process.

  • Event: A specific outcome or a set of outcomes of a chance process; a subset of the sample space.

  • Complement (of an event): The event that the original event does not occur. The probability of the complement is 1 minus the probability of the event.

  • Mutually Exclusive (Disjoint): Two events that have no outcomes in common and therefore can never occur simultaneously.

  • Simulation: A method of modeling random events, such that simulated outcomes are consistent with real-world probabilities, used to estimate probabilities that are difficult to calculate theoretically.

Calculator Tech (TI-84)

The primary calculator function for this unit is generating random numbers for simulations.

Function: (Random Integer)

This function generates random integers within a specified range.

  • Keystrokes:MATH -> PRB -> 5:randInt()

  • Syntax:

    • : The lowest integer you want to generate.

    • : The highest integer you want to generate.

    • : (Optional) The number of integers you want to generate. If omitted, it generates one.

  • Example: Simulating 50 coin flips.

    Let 0 = Tails and 1 = Heads.

    1. Press MATH, arrow over to PRB, select 5:randInt().

    2. Enter randInt(0, 1, 50).

    3. Press STO->then $2nd -> (L1) and ENTER`.

    4. This will generate 50 random 0s and 1s and store them in list L1. You can then go to STAT -> EDIT to view the list and count the number of heads (1s).

How to Show Work on the FRQ

For questions asking you to describe or perform a simulation, you must use a clear, 4-step process. Failure to be specific in your description will lose points.

Template for Describing a Simulation:

  1. STATE: Define the Component and Random Assignment

    • Clearly state the question you are trying to answer.

    • Describe how you will use a random device (e.g., random number generator, dice) to model one simple component of the trial. Be sure to state which numbers correspond to which outcomes and address whether you will allow repeats.

    • Example Sentence: "I will use a random number generator to model this chance process. Let the integers 1-5 represent a success and 6-10 represent a failure. I will ignore repeats if the context requires it."

  2. PLAN: Describe One Trial

    • Explain what constitutes a single trial. This usually involves repeating the component from Step 1 until a specific condition is met.

    • State clearly what you will be recording at the end of each trial.

    • Example Sentence: "A single trial will consist of generating random integers from 1-10 until we have 3 successes. I will record the total number of integers generated in each trial."

  3. DO: Perform Many Trials

    • State that you will perform a large number of trials.

    • Note: On the AP Exam, you will often be given the results of the simulation. In that case, you would simply refer to the provided results.

    • Example Sentence: "I will perform 100 trials of this simulation." or "Using the 50 trials provided in the problem..."

  4. CONCLUDE: Answer the Question

    • Use the results of your simulation to answer the original question from Step 1.

    • Your conclusion must be an estimate and be stated in the context of the problem.

    • Example Sentence: "Out of my 100 trials, 12 trials resulted in [the event of interest]. Therefore, I estimate the probability of [the event of interest] to be approximately 12/100 = 0.12."

Practice Problems

Problem 1:

A local blood drive has a "prize wheel" for donors. The wheel is divided into 12 equal-sized sectors. 6 sectors are for a "$5 Coffee Card," 3 sectors are for a "$10 Gift Card," 2 sectors are for a "Free T-shirt," and 1 sector is for a "$50 Cash Prize." Let C be the event a donor wins a coffee card and T be the event a donor wins a T-shirt.

(a) What is the probability that a randomly selected donor wins a coffee card?

(b) What is the probability that a randomly selected donor does not win the $50 Cash Prize?

(c) Are the events C and T mutually exclusive? Explain.

(d) Find the probability P(C or T).

Solution:

(a) There are 6 coffee card sectors out of 12 total sectors.

P(C) = 6/12 = 0.5.

The probability of winning a coffee card is 0.5.

(b) Let "Cash" be the event of winning the $50 prize. There is 1 sector for this prize.

P(Cash) = 1/12.

The event "does not win the $50 Cash Prize" is the complement of the event "Cash". Using the complement rule:

P(Cashᶜ) = 1 - P(Cash) = 1 - 1/12 = 11/12 \approx 0.917.

The probability of not winning the cash prize is 11/12.

(c) Yes, the events C (winning a coffee card) and T (winning a T-shirt) are mutually exclusive. A single spin of the wheel can only land on one sector. It is impossible for a donor to win both a coffee card and a T-shirt on the same spin because the outcomes occupy different sectors on the wheel.

(d) Since the events are mutually exclusive, we can use the addition rule for mutually exclusive events.

P(T) = 2/12.

P(C or T) = P(C) + P(T) = 6/12 + 2/12 = 8/12 \approx 0.667.

The probability of winning a coffee card or a T-shirt is 8/12.

Problem 2:

A popular cereal brand is running a promotion where a toy is placed in each box. There are 4 different toys, and the company claims they are distributed equally among the boxes. A student wants to collect all 4 toys. Describe how you would design a simulation using a random number generator to estimate the probability that it will take 5 or fewer boxes to collect all 4 unique toys.

Solution:

Here we apply the 4-step FRQ template for simulations.

STATE: Define the Component and Random Assignment

I want to estimate the probability that it takes 5 or fewer boxes to collect all 4 unique toys. I will use a random number generator to model opening a box of cereal. Let the integers 1, 2, 3, and 4 represent the 4 different toys. Since the toys are equally distributed, each integer has an equal probability of being generated.

PLAN: Describe One Trial

A single trial will consist of generating random integers from 1 to 4 until all four unique integers (1, 2, 3, and 4) have been generated. I will record the number of integers generated (i.e., the number of boxes opened) to complete the collection for each trial.

DO: Perform Many Trials

I will perform a large number of trials, for example, 200 trials.

CONCLUDE: Answer the Question

After performing all the trials, I will count the number of trials where the number of boxes required was 5 or fewer. My estimated probability will be this count divided by the total number of trials (200). For example, if 42 trials took 5 or fewer boxes, my estimated probability would be 42/200 = 0.21.

Common Mistakes to Avoid

  • Misinterpreting the Law of Large Numbers: Do not believe in the "Law of Averages." If a coin lands on heads 5 times in a row, the probability of it landing on tails on the next flip is still 0.5. The coin does not "remember" past outcomes and is not "due" for a tails. The LLN only applies to the long-run, not the next trial.

  • Providing a Vague Simulation Description: On an FRQ, you will lose points for a poorly defined simulation. You must explicitly state what numbers represent what outcomes, how a trial is conducted, what is recorded, and how you will calculate the final probability. Follow the 4-step process exactly.

  • Confusing Mutually Exclusive and Independent: These concepts are different. Mutually exclusive means two events cannot happen together (P(A and B) = 0). Independent means the outcome of one event does not affect the outcome of the other. Mutually exclusive events can never be independent (unless one has a probability of 0), because if one event happens, you know the other one cannot, which means its probability has been affected.

  • Probabilities Not Summing to 1: When listing the probabilities of all outcomes in a sample space, always double-check that they sum to exactly 1. A sum greater or less than 1 indicates a calculation error.

  • "At Least One" Calculation Errors: When a problem asks for the probability of "at least one" success, it is almost always easier to use the complement rule. Calculate the probability of "zero successes" and subtract that from 1. P(at least one) = 1 - P(none).