# Estimating Probabilities Using Simulation

> AP Statistics · AP Stats 2024-2026
> Source: https://www.owlsprep.com/study/ap-statistics-u11-estimating-probabilities-using-simulation/

This module walks you through designing valid probability simulations, running trials correctly, and interpreting results to estimate event likelihoods when theoretical calculations are too complex.

**Prerequisites:** [Basic theoretical probability rules](https://www.owlsprep.com/study/ap-statistics-u11-basic-probability-rules/); [Simple random sampling principles](https://www.owlsprep.com/study/ap-statistics-u10-simple-random-sampling/)

## Learning objectives

- Design a valid simulation to estimate unknown event probabilities for real-world scenarios
- Use random number generators, random digit tables, or physical tools to run consistent simulation trials
- Calculate estimated probabilities from simulation results and distinguish them from theoretical probabilities
- Identify sources of bias or error in poorly constructed simulation setups to avoid AP exam grading deductions

## Core Principles of Valid Probability Simulation

Simulation is used when the theoretical probability of an event is difficult or impossible to calculate directly, such as for complex multi-step real-world scenarios. The core rule of any valid simulation is that every possible outcome must be assigned a random value with a probability exactly equal to its real-world likelihood.

**Equal Randomness Assumption** — The requirement that every random digit or value used in a simulation has an equal 1/N chance of being selected, where N is the total number of possible random values.

> **info**
>
> You do not need to prove the theoretical probability to design a simulation. You only need to know the stated individual probability of each base event in the scenario.

**Worked example:** A fair 6-sided die has a 1/6 chance of landing on any number. Design a simple simulation to estimate the probability of rolling a 5.

1. Step 1: Assign outcomes: Use digits 1 through 6 to represent each die roll outcome. The digit 5 represents a success.
2. Step 2: Define a trial: Generate one random integer between 1 and 6, record if it equals 5.
3. Step 3: Run 50 trials, count the number of times a 5 is generated.
4. Step 4: The estimated probability is total successes divided by 50.

## AP Exam Standard Simulation Workflow

**Exam command terms**

AP exam questions almost always use the command term 'Design a simulation' which requires you to explicitly state all 5 steps below to earn full points.

- **Design a simulation** — You must outline every step of the process, no gaps, to get full rubric points *(Worth 3-4 points on most FRQ prompts)*

1. Label each possible base outcome with random digits, proportional to its stated probability
2. Explicitly state any invalid digits that will be ignored and discarded
3. Define exactly what counts as one full trial, including its stopping condition
4. Define what specific outcome counts as a 'success' for the event you are measuring
5. State the number of trials you will run, and how you will calculate the final estimated probability

**Worked example:** A basketball player makes 70% of her free throws. Design a simulation to estimate the probability she makes at least 3 out of 5 consecutive free throws.

1. Step 1: Assign digits 0-6 to represent a made free throw (7 total digits, 70% chance), digits 7-9 to represent a miss (3 total digits, 30% chance). No digits are invalid.
2. Step 2: One trial consists of generating 5 random digits, each representing one free throw attempt.
3. Step 3: A trial is a success if 3 or more of the 5 digits are between 0 and 6.
4. Step 4: Run 50 total trials, count the number of successful trials.
5. Step 5: Estimated probability = number of successful trials / 50.

## Calculating and Interpreting Simulation Results

$$\hat{P}_{\text{simulated}} = \frac{\text{Number of favorable trials}}{\text{Total number of valid trials}}$$

The simulated estimate will almost never exactly match the true theoretical probability, but it will converge to the true value as you increase the total number of trials, per the Law of Large Numbers. For AP exam purposes, you are never required to run hundreds of trials; 20-50 trials are sufficient to produce a reasonable estimate.

> **tip**
>
> Always add the word 'approximately' or 'estimated' when stating your final probability value. This avoids the common deduction of claiming your simulation result is the exact theoretical probability.

**Check your understanding**

Test your understanding of simulation interpretation

1. You run 40 trials and get 12 favorable outcomes. What is your estimated probability?

   - 0.12
   - 0.3
   - 0.4
   - 0.6

   *Why:* 12 divided by 40 equals 0.3, the correct estimated probability.

## Common Simulation Tools and Edge Cases

**Comparing methods**

Three tools are commonly accepted for AP exam simulation designs, each with tradeoffs:

- **Random Digit Table** — Pre-printed table of random 0-9 digits
  - Pros: No calculator required, explicitly allowed for paper 1
  - Cons: You must explicitly state you will read digits sequentially left to right

- **Random Number Generator** — Calculator or software RNG function
  - Pros: Fast, easy to generate large trial counts
  - Cons: Only allowed on calculator-permitted paper sections

- **Physical Randomizers** — Dice, coins, playing cards
  - Pros: Intuitive for simple scenarios
  - Cons: Hard to represent non-integer percentage probabilities accurately

> **warning**
>
> Never reuse random digits across separate trials, as this introduces dependence between trials and breaks the independence assumption required for valid simulation results.

## Common pitfalls

- **Wrong:** Assigning unequal number of digits to outcomes with different probabilities
  - Why it fails: Breaks the equal randomness assumption and skews all simulation results
  - Correct: Allocate digit counts strictly proportional to each outcome's stated real-world probability
- **Wrong:** Forgetting to explicitly state that invalid digits will be discarded when using random digit tables
  - Why it fails: AP rubrics deduct 1 full point for not addressing non-allocated digits
  - Correct: Write a clear line stating which digits are ignored and will not be counted as part of any trial
- **Wrong:** Claiming your simulated estimated probability is the exact theoretical probability of the event
  - Why it fails: Simulation only produces an approximate estimate, never a proof of the true exact value
  - Correct: Always qualify your final result as an approximate or estimated probability
- **Wrong:** Failing to define what counts as one full trial before describing your process
  - Why it fails: Gradients cannot follow your workflow and will mark your entire design as incomplete
  - Correct: Explicitly define a single trial, its stopping rule, and success condition before referencing random values
- **Wrong:** Using fewer than 10 total trials for your simulation
  - Why it fails: Small trial counts produce highly variable, unreliable estimates that do not meet AP standards
  - Correct: Specify a minimum of 20-50 trials to produce a reasonably stable estimated probability

## Cheatsheet

| Simulation Step | Required AP Rubric Detail | Common Deduction |
| --- | --- | --- |
| 1. Define Outcomes | Assign random digits proportional to stated probability | Unequal digit allocation |
| 2. Handle Invalid Digits | Explicitly state non-allocated digits are discarded | No mention of invalid digits |
| 3. Define Trial | State full trial process and stopping rule | No clear trial definition |
| 4. Define Success | Name exact outcome that counts as a favorable result | Ambiguous success criteria |
| 5. Calculate Estimate | Favorable trials / total valid trials | Confuse estimate with theoretical probability |

## What's next

Mastering simulation design is a critical foundational skill for the rest of AP Statistics, as you will use simulation to model random behavior for hypothesis testing, confidence interval construction, and significance testing later in the course. This skill is almost always tested in the free response section, often as a 3-4 point standalone question or sub-part of a larger inference scenario. After completing this module, you will be ready to learn how to calculate expected values for discrete random variables, and explore how simulation verifies the long-run average behavior of random processes. Practice applying your simulation design skills to past FRQ prompts to lock in full points on this high-frequency exam topic.

---

From [OwlsPrep](https://www.owlsprep.com) — free study guides for A-Level, IB, AP and IGCSE, written against the official syllabus. Canonical page: https://www.owlsprep.com/study/ap-statistics-u11-estimating-probabilities-using-simulation/
