Fiveable

📏Honors Pre-Calculus Unit 11 Review

QR code for Honors Pre-Calculus practice questions

11.7 Probability

11.7 Probability

Written by the Fiveable Content Team • Last updated August 2025
Written by the Fiveable Content Team • Last updated August 2025
📏Honors Pre-Calculus
Unit & Topic Study Guides
Pep mascot

Probability Concepts

Probability models let you use math to predict how likely something is to happen. They show up everywhere, from card games to medical research, and they give you a structured way to make predictions about uncertain events. This section covers the core probability rules you need, plus the counting techniques that make complex probability problems manageable.

Pep mascot
more resources to help you study

Probability Models for Real-World Scenarios

There are two main ways to assign probabilities:

  • Theoretical probability calculates likelihood based on what should happen under ideal conditions. You divide the number of favorable outcomes by the total number of possible outcomes. This works when you can assume fairness (a balanced coin, an unbiased die).
  • Experimental probability calculates likelihood based on what actually happened during repeated trials. You divide the number of times an event occurred by the total number of trials. This is what you'd use with survey results, medical studies, or any situation where you're collecting real data.

To build and use a probability model, follow these steps:

  1. Identify the sample space: list every possible outcome for the scenario (for a coin flip: {heads, tails}; for a die roll: {1, 2, 3, 4, 5, 6}).
  2. Assign probabilities to each outcome using either theoretical reasoning or experimental data. Every probability must be between 0 and 1, and the probabilities of all outcomes in the sample space must add up to 1.
  3. Use the model to make predictions by comparing what the model says should happen to what you actually observe.

The law of large numbers connects these two approaches: as you increase the number of trials, experimental probability gets closer and closer to the theoretical probability. Flip a fair coin 10 times and you might get 70% heads. Flip it 10,000 times and you'll be very close to 50%.

Probabilities with Equally Likely Outcomes

When every outcome in the sample space has the same chance of occurring, you're working with equally likely outcomes. Fair coins, fair dice, and well-shuffled decks all fit this category.

The formula is straightforward:

P(event)=number of favorable outcomestotal number of possible outcomesP(\text{event}) = \frac{\text{number of favorable outcomes}}{\text{total number of possible outcomes}}

For example, the probability of rolling an even number on a fair six-sided die: the favorable outcomes are {2, 4, 6}, so P(even)=36=12P(\text{even}) = \frac{3}{6} = \frac{1}{2}.

Another example: the probability of drawing a heart from a standard 52-card deck is P(heart)=1352=14P(\text{heart}) = \frac{13}{52} = \frac{1}{4}, since there are 13 hearts in the deck.

Probability models for real-world scenarios, Scientific Memo: Understanding the empirical law of large numbers and the gambler's fallacy

Union of Events Probabilities

The union of two events A and B, written ABA \cup B, is the event that A happens, B happens, or both happen. Think of it as "A or B."

The general formula is:

P(AB)=P(A)+P(B)P(AB)P(A \cup B) = P(A) + P(B) - P(A \cap B)

You subtract P(AB)P(A \cap B) (the probability of both events happening) because otherwise you'd count that overlap twice.

Example: What's the probability of drawing a heart or a king from a standard deck? There are 13 hearts and 4 kings, but one card (the king of hearts) is both. So P(heart or king)=1352+452152=1652=413P(\text{heart or king}) = \frac{13}{52} + \frac{4}{52} - \frac{1}{52} = \frac{16}{52} = \frac{4}{13}.

When two events are mutually exclusive, they can't happen at the same time, so P(AB)=0P(A \cap B) = 0. The formula simplifies to:

P(AB)=P(A)+P(B)P(A \cup B) = P(A) + P(B)

Rolling a 2 and rolling a 5 on a single die roll are mutually exclusive. Drawing a card that is red and drawing a card that is black are also mutually exclusive (each card is one or the other, not both).

Complement Rule in Probability

The complement of event A, written AA' or AcA^c, is everything in the sample space that is not A. Since an event either happens or it doesn't:

P(A)=1P(A)P(A') = 1 - P(A)

This rule is especially useful when calculating the probability of an event directly would be tedious, but calculating the probability of it not happening is easy.

Example: What's the probability of rolling at least one 6 in four rolls of a die? Calculating that directly means considering rolling exactly one 6, exactly two 6s, etc. Instead, find the complement: the probability of rolling no 6s. On each roll, P(not 6)=56P(\text{not 6}) = \frac{5}{6}, so P(no 6 in four rolls)=(56)4=62512960.482P(\text{no 6 in four rolls}) = \left(\frac{5}{6}\right)^4 = \frac{625}{1296} \approx 0.482. Therefore, P(at least one 6)=10.482=0.518P(\text{at least one 6}) = 1 - 0.482 = 0.518.

Probability models for real-world scenarios, Tree diagram (probability theory) - Wikipedia

Advanced Probability Concepts

These topics go a step beyond the basics and show up frequently in honors-level problems:

  • Conditional probability is the probability of event A occurring given that event B has already occurred, written P(AB)=P(AB)P(B)P(A \mid B) = \frac{P(A \cap B)}{P(B)}. For instance, the probability of drawing a second heart from a deck after already drawing one heart (without replacement) changes because the sample space has shrunk.
  • Independent events are events where the occurrence of one does not affect the probability of the other. Mathematically, A and B are independent if P(AB)=P(A)P(B)P(A \cap B) = P(A) \cdot P(B). Flipping a coin and rolling a die are independent; drawing two cards without replacement are not.
  • Expected value is the long-run average outcome of a random process. For a discrete random variable, E(X)=xiP(xi)E(X) = \sum x_i \cdot P(x_i). If a game pays $10 with probability 0.3 and $0 with probability 0.7, the expected value is 10(0.3)+0(0.7)=$310(0.3) + 0(0.7) = \$3 per play.
  • Bayes' theorem lets you update a probability when you receive new information: P(AB)=P(BA)P(A)P(B)P(A \mid B) = \frac{P(B \mid A) \cdot P(A)}{P(B)}. This is powerful in situations like medical testing, where you want to know the probability of actually having a disease given a positive test result.

Counting Techniques

Counting Techniques for Complex Probabilities

When probability problems involve large sample spaces, counting techniques let you figure out the total number of outcomes and favorable outcomes without listing them all.

The Fundamental Counting Principle says: if one event can happen in mm ways and an independent second event can happen in nn ways, then the two events together can happen in m×nm \times n ways. This extends to any number of events.

For example, if you have 3 shirts, 4 pairs of pants, and 2 pairs of shoes, the total number of outfits is 3×4×2=243 \times 4 \times 2 = 24.

Permutations count the number of ways to arrange objects when order matters. The number of permutations of nn distinct objects taken rr at a time is:

P(n,r)=n!(nr)!P(n, r) = \frac{n!}{(n-r)!}

Example: How many ways can you award 1st, 2nd, and 3rd place among 8 runners? Order matters here (1st place is different from 2nd), so P(8,3)=8!5!=8×7×6=336P(8, 3) = \frac{8!}{5!} = 8 \times 7 \times 6 = 336.

Combinations count the number of ways to select objects when order does not matter. The number of combinations of nn distinct objects taken rr at a time is:

C(n,r)=(nr)=n!r!(nr)!C(n, r) = \binom{n}{r} = \frac{n!}{r!(n-r)!}

Example: How many ways can you choose a committee of 3 people from a group of 10? Since it doesn't matter who's picked first, C(10,3)=10!3!7!=7206=120C(10, 3) = \frac{10!}{3! \cdot 7!} = \frac{720}{6} = 120.

Deciding between permutations and combinations comes down to one question: does the order of selection matter?

  • Arranging books on a shelf, assigning ranked positions, creating passwords → permutation (order matters)
  • Choosing team members, selecting toppings, picking lottery numbers → combination (order doesn't matter)

Once you've determined the total number of outcomes and the number of favorable outcomes using these techniques, plug them into the probability formula to solve the problem.