Home
Statistics Help
Probability Rules

Probability Rules Explained: Addition, Multiplication, and Complement

Quick Answer

The three core probability rules are: Complement Rule (P(not A) = 1 − P(A)), Addition Rule for “OR” problems (P(A or B) = P(A) + P(B) − P(A and B)), and Multiplication Rule for “AND” problems (P(A and B) = P(A) × P(B) for independent events). The key is identifying which rule to use based on keywords in the problem.

Probability problems follow patterns. Once you recognize the keywords—”or,” “and,” “not,” “given”—you’ll know exactly which formula to use. This guide breaks down each rule with clear examples.

Probability Basics

Before diving into rules, let’s establish the fundamentals:

  • Probability measures how likely an event is to occur, ranging from 0 (impossible) to 1 (certain)
  • Sample space (S) is the set of all possible outcomes
  • Event is a specific outcome or set of outcomes you’re interested in

Basic probability formula:

P(A) = Number of favorable outcomes / Total number of possible outcomes

Key properties:

  • 0 ≤ P(A) ≤ 1 for any event A
  • P(S) = 1 (something must happen)
  • P(∅) = 0 (impossible event has probability 0)

The Complement Rule

The complement of event A (written A’ or Ā) is “not A”—everything in the sample space that isn’t A.

Complement rule showing P(A') = 1 - P(A)

The complement is everything outside of A

Complement Rule

P(A’) = 1 − P(A)

When to use it: When you see “not,” “none,” “neither,” or when calculating “at least one” (it’s often easier to find the complement).

📝 Worked Example: Complement

Problem: If P(rain tomorrow) = 0.35, what’s P(no rain tomorrow)?

Solution: P(no rain) = 1 − P(rain) = 1 − 0.35 = 0.65

The “At Least One” Trick

“At least one” problems are usually easier with the complement:

Key Strategy

P(at least one) = 1 − P(none)

Instead of calculating all the ways to get 1, 2, 3, etc., just find P(zero) and subtract from 1.

📝 Worked Example: At Least One

Problem: You flip a coin 3 times. What’s P(at least one head)?

Solution:

P(no heads) = P(all tails) = (0.5)³ = 0.125

P(at least one head) = 1 − 0.125 = 0.875

The Addition Rule (OR)

Use the addition rule when finding P(A or B)—the probability that event A occurs, event B occurs, or both occur.

Addition rule with Venn diagrams for overlapping and mutually exclusive events

Subtract the overlap to avoid counting it twice

General Addition Rule

P(A ∪ B) = P(A) + P(B) − P(A ∩ B)

If mutually exclusive: P(A ∪ B) = P(A) + P(B)

Key Terms

  • Mutually exclusive — Events that cannot happen at the same time (P(A ∩ B) = 0)
  • Not mutually exclusive — Events that can overlap (must subtract the overlap)

📝 Worked Example: Mutually Exclusive

Problem: A die is rolled. What’s P(rolling a 2 or a 5)?

Solution: These are mutually exclusive (can’t roll both).

P(2 or 5) = P(2) + P(5) = 1/6 + 1/6 = 2/6 = 1/3

📝 Worked Example: Not Mutually Exclusive

Problem: In a class of 30 students, 12 play soccer, 8 play basketball, and 3 play both. What’s P(a randomly chosen student plays soccer or basketball)?

Solution: Events overlap (3 students play both).

P(soccer) = 12/30, P(basketball) = 8/30, P(both) = 3/30

P(soccer or basketball) = 12/30 + 8/30 − 3/30 = 17/30 ≈ 0.567

The Multiplication Rule (AND)

Use the multiplication rule when finding P(A and B)—the probability that both events occur.

Multiplication rule for independent vs dependent events

Independent events: multiply directly. Dependent events: use conditional probability.

Multiplication Rule

Independent: P(A ∩ B) = P(A) × P(B)

Dependent: P(A ∩ B) = P(A) × P(B|A)

Independent vs. Dependent Events

Independent Events Dependent Events
One event doesn’t affect the other First event changes probability of second
P(B|A) = P(B) P(B|A) ≠ P(B)
Coin flips, dice rolls, with replacement Drawing cards without replacement
Just multiply: P(A) × P(B) Need conditional: P(A) × P(B|A)

📝 Worked Example: Independent

Problem: You flip a coin and roll a die. What’s P(heads AND rolling a 6)?

Solution: These are independent (coin doesn’t affect die).

P(heads and 6) = P(heads) × P(6) = (1/2) × (1/6) = 1/12 ≈ 0.083

📝 Worked Example: Dependent (No Replacement)

Problem: A bag has 5 red and 3 blue marbles. You draw 2 without replacement. What’s P(both red)?

Solution: Events are dependent (first draw changes what’s left).

P(1st red) = 5/8

P(2nd red | 1st red) = 4/7 (now 4 red left out of 7 total)

P(both red) = (5/8) × (4/7) = 20/56 = 5/14 ≈ 0.357

Conditional Probability

Conditional probability is the probability of A occurring, given that B has already occurred. The notation P(A|B) reads “probability of A given B.”

Conditional probability showing reduced sample space

Given B occurred, B becomes the new “whole” sample space

Conditional Probability Formula

P(A|B) = P(A ∩ B) / P(B)

Intuition: Once we know B happened, B becomes our new sample space. We want the fraction of B that also contains A.

📝 Worked Example: Conditional Probability

Problem: In a group of 100 people, 40 are female, 30 wear glasses, and 12 are females who wear glasses. If a person is female, what’s the probability she wears glasses?

Solution: We want P(glasses | female).

P(female and glasses) = 12/100 = 0.12

P(female) = 40/100 = 0.40

P(glasses | female) = 0.12 / 0.40 = 0.30

Rearranging for Multiplication Rule

The conditional probability formula can be rearranged to give the multiplication rule for dependent events:

From P(A|B) = P(A ∩ B) / P(B), we get:

P(A ∩ B) = P(B) × P(A|B)

Which Rule Do I Use?

The biggest challenge is recognizing which rule to apply. Look for keywords:

Flowchart for deciding which probability rule to use

Identify the keyword to choose the right rule

Keyword Rule Formula
OR, either, at least one of Addition Rule P(A) + P(B) − P(A∩B)
AND, both, all Multiplication Rule P(A) × P(B) or P(A) × P(B|A)
NOT, none, neither Complement Rule 1 − P(A)
GIVEN, if, knowing that Conditional Probability P(A∩B) / P(B)
AT LEAST ONE Complement (usually) 1 − P(none)

Common Student Mistakes

❌ Mistake #1: Forgetting to subtract the overlap in addition rule

When events aren’t mutually exclusive, P(A or B) ≠ P(A) + P(B). You must subtract P(A and B) to avoid counting the overlap twice.

❌ Mistake #2: Treating dependent events as independent

Drawing cards without replacement, selecting people from a group—these change probabilities as you go. Don’t just multiply P(A) × P(B); use P(A) × P(B|A).

❌ Mistake #3: Confusing P(A|B) with P(B|A)

These are different! P(rain | cloudy) ≠ P(cloudy | rain). Always identify which event is “given” and which you’re finding.

❌ Mistake #4: Adding when you should multiply (or vice versa)

Remember: “OR” means add (with adjustment), “AND” means multiply. Read the problem carefully to identify what’s being asked.

❌ Mistake #5: Getting probability > 1 or < 0

Probability must be between 0 and 1. If your answer is negative or greater than 1, you made a calculation error. Go back and check.

Platform-Specific Tips

ALEKS

ALEKS loves testing whether you can identify independent vs. dependent events. Pay attention to phrases like “with replacement” (independent) vs. “without replacement” (dependent). ALEKS also frequently asks “at least one” problems—use the complement!

MyStatLab (Pearson)

MyStatLab often provides probability tables (contingency tables) and asks for conditional probabilities. The formula P(A|B) = P(A∩B)/P(B) translates to: divide the cell count by the row or column total. Watch which total to use!

WebAssign

WebAssign tests conceptual understanding alongside calculations. Be prepared to explain why events are or aren’t independent, and why you chose a particular rule. Show your reasoning.

Calculator Tips

For complex multiplication problems with many events, work systematically:

  • Write out each probability in the chain
  • Update numerator AND denominator for dependent events
  • Multiply all terms together at the end

Need help with these platforms? Our tutors work with ALEKS statistics, MyStatLab, and WebAssign every day.

Quick Reference Summary

Complement (NOT)

P(A’) = 1 − P(A)

Addition (OR)

P(A∪B) = P(A) + P(B) − P(A∩B)

Multiplication (AND)

P(A∩B) = P(A) × P(B|A)

Conditional (GIVEN)

P(A|B) = P(A∩B) / P(B)

⚠️ Remember: OR → Add (subtract overlap) • AND → Multiply • NOT → Complement • “At least one” → 1 − P(none)

Frequently Asked Questions

What does “mutually exclusive” mean?

Mutually exclusive events cannot happen at the same time. If A happens, B cannot happen, and vice versa. Examples: rolling a 2 or a 5 on one die (can’t be both), being in New York or Los Angeles at the same moment. For mutually exclusive events, P(A and B) = 0.

How do I know if events are independent?

Ask: “Does knowing one event happened change the probability of the other?” If no, they’re independent. Coin flips, dice rolls, and drawing with replacement are independent. Drawing without replacement, selecting from a shrinking pool, and events that influence each other are dependent.

Can events be both independent and mutually exclusive?

Only if one event has probability 0. If A and B are mutually exclusive with P(A) > 0 and P(B) > 0, then knowing A happened tells you B definitely didn’t—so they’re dependent. This is a common point of confusion!

Why is P(A or B) not just P(A) + P(B)?

Because if A and B can both happen, you’d count the overlap twice. Imagine 10 students: 5 in math club, 4 in science club, 2 in both. If you add 5+4=9, you’ve counted the 2 students in both clubs twice. Correct answer: 5+4−2=7 students in at least one club.

What’s the difference between P(A and B) and P(A|B)?

P(A and B) is the probability both happen out of all possibilities. P(A|B) is the probability A happens given B already happened—it’s restricted to only cases where B occurs. P(A|B) = P(A and B) / P(B).

When should I use the complement rule?

Use it when finding “not,” “none,” or “at least one.” The “at least one” trick is especially useful: instead of calculating P(1) + P(2) + P(3) + …, just find P(0) and subtract from 1. It’s usually much easier.

What’s Bayes’ Theorem?

Bayes’ Theorem lets you “reverse” conditional probabilities: find P(A|B) when you know P(B|A). The formula is P(A|B) = P(B|A)×P(A) / P(B). It’s commonly used in medical testing and spam filtering. Most intro courses just touch on it briefly.

Can you help with my probability homework?

Absolutely. Probability rules are foundational but can be tricky to apply correctly. Our tutors help with everything from basic calculations to complex conditional probability problems. Get a free quote to get started.

Related Resources

Statistics Foundations

Statistics Help

Need Help With Probability?

Our tutors help you master probability rules and apply them correctly on homework and exams.

Get a Free Quote