What Is a Complementary Event? Definition and Rule

A complementary event is the opposite of a given event. In probability, if you define an event A, its complement is everything that happens when A does not happen. Together, an event and its complement account for every possible outcome, so their probabilities always add up to 1 (or 100%).

How Complementary Events Work

Think of flipping a coin. If event A is “landing on heads,” the complementary event is “landing on tails.” Those two outcomes cover every possibility, and exactly one of them will occur on any given flip. That’s the core idea: a complementary event includes all outcomes in the sample space that aren’t part of the original event.

This applies to more complex situations too. If you roll a standard six-sided die and define event A as “rolling a 4 or higher” (outcomes 4, 5, 6), the complement is “rolling a 3 or lower” (outcomes 1, 2, 3). Every possible result falls into one group or the other, with no overlap.

You’ll see the complement of A written as Ac, A’, or Ā, depending on the textbook. They all mean the same thing: “not A.”

The Complement Rule

Because an event and its complement cover all possible outcomes, their probabilities must add to 1:

P(A) + P(Ac) = 1

Rearranging gives you two useful formulas:

  • P(A) = 1 − P(Ac)
  • P(Ac) = 1 − P(A)

Back to the die example: the probability of rolling a 4 or higher is 3/6, or 0.5. So the probability of the complement (rolling a 3 or lower) is 1 − 0.5 = 0.5. Simple enough here, but this shortcut becomes genuinely powerful when the direct calculation would be tedious.

Solving “At Least One” Problems

The complement rule really shines when a problem uses the phrase “at least one.” Calculating the probability of at least one success directly can involve dozens of scenarios. The complement of “at least one” is “none at all,” which is usually a single, easy calculation.

For example, say you flip a coin five times and want the probability of getting at least one head. Counting every qualifying combination (one head, two heads, three heads, and so on) is slow. Instead, find the complement: the probability of getting zero heads, meaning tails on every flip. That’s (1/2)5 = 1/32, or about 0.031. Subtract from 1, and the probability of at least one head is 1 − 0.031 = 0.969, or about 97%.

The same logic works for “at most” problems. If you need the probability of at most two successes, the complement is three or more successes. Whichever side of the problem is simpler to calculate, use that one and subtract from 1.

Visualizing With a Venn Diagram

A Venn diagram makes complements easy to see. Draw a rectangle representing the entire sample space (every possible outcome). Inside that rectangle, draw a circle for event A. Everything inside the circle is A. Everything outside the circle but still inside the rectangle is Ac. The two regions together fill the entire rectangle with no gaps and no overlap.

Complementary vs. Mutually Exclusive vs. Independent

These three terms come up together in probability courses, and they describe very different relationships.

Complementary events cannot happen at the same time, and they account for every possible outcome. Rolling an even number and rolling an odd number on a single die are complementary: one of them must occur.

Mutually exclusive events also cannot happen at the same time, but they don’t have to cover every outcome. Rolling a 1 and rolling a 6 are mutually exclusive (you can’t get both on one roll), yet they leave out 2, 3, 4, and 5. Complementary events are always mutually exclusive, but mutually exclusive events are not always complementary.

Independent events are something else entirely. Two events are independent when the occurrence of one doesn’t change the probability of the other. Flipping a coin and rolling a die are independent because the coin result has no effect on the die result. Independent events can absolutely happen at the same time, which means they are not mutually exclusive (and not complementary either).

The Complement in More Advanced Problems

The complement rule doesn’t just simplify textbook exercises. It plays a key role in more complex probability methods. One important application is the law of total probability, which breaks a hard-to-calculate probability into pieces using an event and its complement.

A classic example involves medical testing. Suppose a disease affects 0.1% of a population, and a test correctly identifies sick patients 99% of the time but falsely flags 5% of healthy people. To find the overall probability of testing positive, you need to account for both groups: people who have the disease and people who don’t (the complement). The calculation combines 0.99 × 0.001 (true positives) with 0.05 × 0.999 (false positives from the complementary group of healthy people). The result shows that even with a seemingly accurate test, a positive result in this scenario means only about a 1.9% chance of actually having the disease. The complement, “not having the disease,” dominates because it covers 99.9% of the population.

This pattern appears throughout statistics and data science. Whenever calculating a probability directly feels overwhelming, check whether the complement offers an easier path. If it does, solve for that and subtract from 1.