Fiveable

📈College Algebra Unit 13 Review

QR code for College Algebra practice questions

13.7 Probability

13.7 Probability

Written by the Fiveable Content Team • Last updated August 2025
Written by the Fiveable Content Team • Last updated August 2025
📈College Algebra
Unit & Topic Study Guides

Probability Fundamentals

Probability gives you a way to measure how likely something is to happen, using a number between 0 and 1. These tools show up constantly in statistics, science, and finance, so getting comfortable with them now pays off.

Basic Probability Model

Probability measures the likelihood of an event on a scale from 0 (impossible) to 1 (certain). To calculate it, you need two things: a sample space and an event.

  • Sample space (S) is the set of all possible outcomes. For rolling a die, S={1,2,3,4,5,6}S = \{1, 2, 3, 4, 5, 6\}.
  • Event (E) is a subset of the sample space you care about. "Rolling an even number" means E={2,4,6}E = \{2, 4, 6\}.

The probability of an event is:

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

For example, the probability of drawing a heart from a standard 52-card deck is 1352=14\frac{13}{52} = \frac{1}{4}, since there are 13 hearts out of 52 total cards.

Equal Likelihood Probabilities

When every outcome in the sample space is equally likely, you can apply the formula above directly:

P(E)=number of outcomes in Etotal number of outcomes in SP(E) = \frac{\text{number of outcomes in } E}{\text{total number of outcomes in } S}

  • Rolling a 3 on a fair six-sided die: P(3)=16P(3) = \frac{1}{6} (one favorable outcome, six total)
  • Flipping heads on a fair coin: P(heads)=12P(\text{heads}) = \frac{1}{2} (one favorable outcome, two total)

The key word here is fair. This formula only works when no outcome is more likely than another.

Basic probability model creation, Distribution of Sample Proportions (5 of 6) | Concepts in Statistics

Probability Rules and Techniques

Union Rules for Combined Events

The union of events A and B, written ABA \cup B, is the event that at least one of them occurs. The formula for its probability 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 both happen) because otherwise you'd count that overlap twice.

Mutually exclusive events 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)

For example, drawing a heart or a spade from a deck: these suits don't overlap, so P(heart or spade)=1352+1352=12P(\text{heart or spade}) = \frac{13}{52} + \frac{13}{52} = \frac{1}{2}.

Independent events are different from mutually exclusive events. Two events are independent when the occurrence of one doesn't change the probability of the other. For instance, flipping a coin and rolling a die are independent because the coin result has no effect on the die result.

Basic probability model creation, Introduction to probability – Learning Statistics with R

Complement Rule

The complement of event A, written AA' or AcA^c, is everything in the sample space that isn't A. Its probability is:

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

This is especially useful when it's easier to calculate the probability of something not happening. A couple of examples:

  • Probability of not drawing a red card: 112=121 - \frac{1}{2} = \frac{1}{2}
  • Probability of not rolling a 6: 116=561 - \frac{1}{6} = \frac{5}{6}

Counting Techniques for Complex Probabilities

When problems get more involved, you need systematic ways to count outcomes. There are three main tools.

Fundamental Counting Principle: If one event can happen in mm ways and an independent second event can happen in nn ways, the two events together can happen in m×nm \times n ways. A menu with 3 appetizers and 4 entrees gives 3×4=123 \times 4 = 12 possible meals. This extends to any number of events.

Permutations count arrangements where order matters.

  • The number of ways to arrange all nn distinct objects is n!=n×(n1)×(n2)××2×1n! = n \times (n-1) \times (n-2) \times \cdots \times 2 \times 1. Arranging 5 books on a shelf: 5!=1205! = 120.
  • The number of ways to arrange rr objects chosen from nn is: P(n,r)=n!(nr)!P(n, r) = \frac{n!}{(n-r)!}. Selecting 3 people from 10 to stand in a line (where position matters): P(10,3)=10!7!=720P(10, 3) = \frac{10!}{7!} = 720.

Combinations count selections where order does not matter.

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

Choosing 3 people from 10 for a committee (where position doesn't matter): C(10,3)=10!3!7!=120C(10, 3) = \frac{10!}{3! \cdot 7!} = 120. Notice this is smaller than the permutation answer because we're no longer distinguishing the order.

Permutation vs. Combination: Ask yourself, "Does the order of selection matter?" If yes, use permutations. If no, use combinations. A line of people (order matters) vs. a committee (order doesn't).

Using counting in probability: Once you can count favorable and total outcomes, plug them into the probability formula. For example, the probability of drawing 2 aces from a deck in 2 draws without replacement:

P(2 aces)=C(4,2)C(52,2)=61326=1221P(\text{2 aces}) = \frac{C(4, 2)}{C(52, 2)} = \frac{6}{1326} = \frac{1}{221}

The numerator counts ways to choose 2 aces from the 4 available. The denominator counts all ways to choose any 2 cards from 52.