How to find the probability that at least one of two things happens.
At the 2023 US Open tennis tournament, a statistician tracked every first serve Rafael Nadal hit. On any given point, Nadal either hit the serve into the service box, or he double-faulted, or something in between. The statistician wanted to know: what is the probability that a randomly chosen point ended with a fault or with an ace? Those two outcomes don't overlap — you can't fault and ace on the same serve. But not every pair of outcomes is that clean. Sometimes two events can happen at the same time, and counting them both risks counting some outcomes twice. The addition rule exists to handle that problem precisely.
Start with two events, A and B, drawn from the same sample space. The probability that A or B occurs — meaning at least one of them happens — is given by the addition rule:
P(A∪B)=P(A)+P(B)−P(A∩B)
The symbol A∪B means the union of A and B: everything that belongs to A, or B, or both. The symbol A∩B means the intersection: outcomes that belong to both at the same time. You subtract P(A∩B) because when you added P(A) and P(B), any outcome in both events got counted twice. Subtracting the overlap corrects that.
Here is a concrete picture. A standard deck has 52 cards. Pick one at random. Let A be the event "the card is a heart" and B be the event "the card is a face card." There are 13 hearts, 12 face cards, and 3 cards that are both (jack, queen, and king of hearts). Without the correction, adding KaTeX can only parse string typed expression counts those 3 cards twice. Subtracting \frac fixes it.
Drawing a heart or a face card from a standard deck
P(A)=5213,P(B)=5212,P(A∩B)=523
Count the hearts, the face cards, and the cards that are both.
P(A∪B)=5213+5212−523
Plug into the addition rule. The three cards that are both a heart and a face card were counted twice, so subtract them once.
P(A∪B)=5222=2611✓
Simplify by dividing numerator and denominator by 2.
Now for the special case that comes up constantly on the Regents. Two events are mutually exclusive when they cannot both happen at the same time — their intersection is empty. Formally, P(A∩B)=0. Rolling a 2 and rolling a 5 on one die roll. Being born in July and being born in October. Drawing a club and drawing a heart from one card draw. When events are mutually exclusive, the addition rule simplifies:
P(A∪B)=P(A)+P(B)
The subtraction term disappears because there is nothing to subtract. This simpler form only applies when you have confirmed the events cannot overlap. Using it when they can overlap is one of the most common errors on this exam.
Rolling a 4 or an odd number on a standard die
A={4},B={1,3,5}
List out which outcomes belong to each event.
P(A)=61,P(B)=63
Count the outcomes. 4 is even, so it cannot be odd — these events don't overlap.
P(A∩B)=0
4 is not odd. There is no outcome that satisfies both events at once.
P(A∪B)=61+63=64=32✓
Since the events are mutually exclusive, just add. No subtraction needed.
There is one more rule worth knowing here. Every event A has a complement, written Ac or A′, which contains every outcome in the sample space that is not in A. An event and its complement are always mutually exclusive and together cover the entire sample space, so their probabilities must add to 1:
P(A)+P(Ac)=1
Rearranged: P(Ac)=1−P(A). This is the complement rule, and it saves real time. If a problem asks for the probability of something not happening, subtract from 1.
Finding the probability of not drawing a spade
P(spade)=5213=41
There are 13 spades in a 52-card deck.
P(not spade)=1−41
The complement of drawing a spade is drawing anything else. Subtract from 1.
P(not spade)=43✓
Three out of every four cards is not a spade.
The Venn diagram below shows how two overlapping events sit inside a sample space. The overlap in the middle is A∩B — the part you subtract. When those circles don't touch at all, the events are mutually exclusive.
Interactive graph — scroll to zoom, drag to pan
Practice Questions
P(A)=0.45,P(B)=0.30,P(A∩B)=0.15. Find P(A∪B).
P(A)=52,P(B)=41,A and B are mutually exclusive. Find P(A∪B).
P(A∪B)=0.78,P(A)=0.55,P(B)=0.40. Find P(A∩B).
Regents Corner
On Part II and Part III of the Algebra II Regents, addition rule problems often appear as multi-step questions where you are given a two-way frequency table and asked to find a union probability. Read the table carefully to identify the overlap before applying the formula. Show the formula, show the substitution, and show the arithmetic as separate lines — partial credit is available if your setup is correct even if you arithmetic-error the final answer.
A student sees that two events are mutually exclusive and writes P(A or B) = P(A) · P(B) instead of P(A) + P(B), confusing the rule for mutually exclusive events with the multiplication rule for independent events. These are different situations with different rules. Mutually exclusive means they cannot happen together, so you add their probabilities. Independent means knowing one gives no information about the other, so you multiply. Never multiply when the question is asking for a union.