Study Guide

Introduction to Probability

AP StatisticsΒ· 12 min read

1. Core Terminology and Sample Space Enumerationβ˜…β˜…β˜†β˜†β˜†β± 3 min

All probability calculations start with clearly defining the random experiment: any process that produces uncertain, measurable outcomes. The full collection of these distinct outcomes is called the sample space, and individual subsets of the sample space are referred to as events.

πŸ“˜ Definition

Event

A,B,C...A, B, C...

A specific subset of outcomes from the sample space that you are calculating probability for

Example:

For a 6-sided die roll, the event 'rolling an even number' contains outcomes {2,4,6}

πŸ“ Worked Example

List the full sample space and define 2 distinct events for the experiment of flipping a fair coin twice

  1. 1

    First, enumerate every possible ordered outcome of the two coin flips:

    S={HH,HT,TH,TT}S = \{ HH, HT, TH, TT \}
  2. 2

    Define Event A as 'getting exactly one heads':

    A={HT,TH}A = \{ HT, TH \}
  3. 3

    Define Event B as 'getting at least one tails':

    B={HT,TH,TT}B = \{ HT, TH, TT \}
βœ“ Quick check

Test your understanding of sample space enumeration:

  1. Which of the following is the valid full sample space for drawing a single card from a standard 52-card deck?

    • {Hearts, Diamonds, Clubs, Spades}

    • {Ace, 2, 3, ..., King}

    • All 52 unique rank-suit pairs

    • {Red, Black}

    Reveal answer
    All 52 unique rank-suit pairs β€”

    The full sample space must contain every distinct possible outcome of the experiment, not just grouped categories

2. Three Classifications of Probabilityβ˜…β˜…β˜†β˜†β˜†β± 3 min

All valid probability values are bounded between 0 (impossible event) and 1 (certain event), and can be derived using three different formal frameworks depending on the context of the problem.

Methods compared

The three standard probability frameworks tested on the AP Statistics exam are:

Theoretical Probability

Calculated as the ratio of favorable outcomes to total equally likely outcomes in the sample space, no experimental data required

+ Pros: Exact value if all outcomes are known and equally likely

βˆ’ Cons: Fails if outcomes have unequal likelihoods

Empirical Probability

Calculated as the ratio of successful trials to total trials run in a repeated random experiment

+ Pros: Works even when theoretical outcomes are not equally likely

βˆ’ Cons: Requires large number of trials to converge to true value

Subjective Probability

An informed estimate of likelihood based on prior domain knowledge, no formal enumeration or experiment required

+ Pros: Can be used for one-off events that cannot be repeated

βˆ’ Cons: Not mathematically rigorous

πŸ“ Worked Example

Classify each scenario as theoretical, empirical, or subjective: 1. Forecaster says 30% chance of rain tomorrow 2. Chance of drawing a king from a deck is 4/52 3. 1000 coin flips produce 487 heads, so estimated heads probability is 0.487

  1. 1
    1. The rain probability is subjective, derived from expert meteorological judgement
  2. 2
    1. The king draw probability is theoretical, calculated from equally likely card outcomes
  3. 3
    1. The coin flip estimate is empirical, derived from repeated trial results

3. Fundamental Probability Axiomsβ˜…β˜…β˜…β˜†β˜†β± 3 min

All valid probability models must satisfy three non-negotiable axioms, which form the mathematical foundation for all more advanced probability rules you will learn later in the course.

0≀P(A)≀1 for any event A0 \leq P(A) \leq 1 \text{ for any event } A
P(S)=1 where S is the full sample spaceP(S) = 1 \text{ where } S \text{ is the full sample space}
P(AβˆͺB)=P(A)+P(B) if A and B are mutually exclusiveP(A \cup B) = P(A) + P(B) \text{ if } A \text{ and } B \text{ are mutually exclusive}
πŸ”¬ Derivation
Goal:

Derive the complement rule from the probability axioms

Starting from:

Event A and its complement A^c are mutually exclusive, and their union is the full sample space S

  1. 1

    By the third axiom, P(A \cup A^c) = P(A) + P(A^c)

  2. 2

    Since A \cup A^c = S, by the second axiom P(A \cup A^c) = P(S) = 1

  3. 3

    Rearrange the equation to isolate the complement term

Result:

The complement rule: P(A^c) = 1 - P(A)

πŸ“ Worked Example

Verify the given probability model for a 6-sided die roll is valid, then calculate the probability of not rolling a 3

  1. 1

    Given model: P(1)=0.1, P(2)=0.15, P(3)=0.2, P(4)=0.2, P(5)=0.15, P(6)=0.2

  2. 2

    Check all probabilities fall between 0 and 1: all values satisfy this condition

  3. 3

    Sum all probabilities: 0.1 + 0.15 + 0.2 + 0.2 + 0.15 + 0.2 = 1, so the model is valid

  4. 4

    Apply the complement rule: P(not 3) = 1 - P(3) = 1 - 0.2 = 0.8

4. AP Exam Probability Phrasingβ˜…β˜…β˜†β˜†β˜†β± 3 min

AP Statistics free response questions use specific command terms that define exactly what work you need to show to earn full points, even if your final numerical answer is correct.

5. Common Pitfalls

Wrong move:

Treating grouped categories as the full sample space

Why:

Grouped categories often do not represent distinct, mutually exclusive outcomes that cover all possibilities

Correct move:

Always confirm your sample space entries are mutually exclusive and collectively exhaustive before calculating probabilities

Wrong move:

Using theoretical probability for experiments with known unequal outcome likelihoods

Why:

Theoretical probability only works if all outcomes in the sample space are equally likely, a condition that is often unstated

Correct move:

Explicitly confirm equal likelihood before using theoretical probability, otherwise use empirical probability

Wrong move:

Producing negative or greater-than-1 probability values and not catching the error

Why:

Arithmetic mistakes are common, and many students skip sanity checks

Correct move:

After every calculation, confirm your final value falls between 0 and 1

Wrong move:

Adding probabilities of two events that are not mutually exclusive

Why:

This double counts overlapping outcomes that appear in both events

Correct move:

Only add probabilities directly if you have confirmed the two events cannot occur at the same time

6. Quick Reference Cheatsheet

Rule / Term

Formula

Use Case

Complement Rule

Calculate probability of event not occurring

Mutually Exclusive Events

Events cannot overlap

Theoretical Probability

Equal likelihood sample space

Law of Large Numbers

Empirical probability converges to true value

When this came up on past exams

AI-estimated based on syllabus patterns β€” cross-check with official past papers for accuracy. Use only as revision-focus signals.

  • 2023 Β· Paper 1

    Basic probability multiple choice

  • 2022 Β· Paper 2 FRQ

    Sample space enumeration task

  • 2021 Β· Paper 1

    Mutually exclusive event calculation

What's Next

Mastering these foundational probability rules is critical for every subsequent unit in AP Statistics, from conditional probability to random variable distributions and inference procedures. The College Board weights probability concepts heavily across both the multiple choice and free response sections of the exam, so building fluency with these basics will make more complex topics far easier to learn. Next, you will move on to formal set operations for probability, then conditional probability calculations, before introducing independent events and the multiplication rule. These skills will be directly applied when you begin working with discrete random variables later in this unit.