datarekha

Independent vs Mutually Exclusive

Two ideas GATE deliberately confuses. Mutually exclusive events can't co-occur; independent events don't inform each other — and they're almost never the same thing.

7 min read Beginner GATE DA Lesson 5 of 122

What you'll learn

  • Mutually exclusive means P(A and B) = 0 — the events can't both happen
  • Independent means P(A and B) = P(A)·P(B) — one tells you nothing about the other
  • Why two mutually exclusive events with non-zero probability are necessarily dependent
  • How to answer the 'which statements are always true' MSQ this topic generates

Before you start

Flip a coin twice. The two flips don’t talk to each other — that’s independence. Now roll one die and look at “even” versus “odd”: those can’t both happen at once — that’s mutually exclusive. The two ideas sound alike but mean opposite things, and the exam keeps swapping them on purpose to see who notices. So we’ll spell each one out, then look at why the overlap between them is essentially empty.

Two different ideas

  • Mutually exclusive (disjoint): the events cannot both happen. P(A ∩ B) = 0. Rolling a die: “show a 2” and “show a 5” are mutually exclusive.
  • Independent: knowing one happened doesn’t change the probability of the other. P(A ∩ B) = P(A)·P(B). Two separate coin flips are independent.
Mutually exclusiveABP(A ∩ B) = 0IndependentABP(A ∩ B) = P(A)P(B)
Disjoint circles vs overlapping circles — different pictures, different rules.

The trap: disjoint events are dependent

Here’s the insight GATE keeps testing. Suppose A and B are mutually exclusive and both have non-zero probability. Are they independent? No — they’re dependent.

Why? If A happens, then B is now impossible (P(B | A) = 0), which is very different from B’s original probability. Knowing A told you a great deal about B. Formally:

mutually exclusive ⇒ P(A ∩ B) = 0
independent        ⇒ P(A ∩ B) = P(A)·P(B)

These agree only when P(A)·P(B) = 0, i.e. at least one event has zero probability. So for any two real (non-zero) events, mutually exclusive and independent cannot both hold. They’re opposites in practice, not synonyms.

A quick numeric feel

Roll a fair die. A = “even” = {2,4,6}, B = “odd” = {1,3,5}. These are mutually exclusive: P(A ∩ B) = 0. If they were independent we’d need P(A)·P(B) = 0.5 × 0.5 = 0.25 ≠ 0. They aren’t independent — knowing the roll is even makes “odd” impossible.

Now A = “even” and C = “less than or equal to 3” = {1,2,3}. P(A) = 1/2, P(C) = 1/2, and A ∩ C = {2} so P(A ∩ C) = 1/6. Independent would need 1/4. Since 1/6 ≠ 1/4, these are dependent too — independence is a precise numeric condition, not a vibe.

Drag the two circles. Pull them fully apart and P(A ∩ B) = 0 — that’s mutually exclusive (and dependent). Now slide them back so they overlap, and watch the “independent” badge light up at the specific overlap where P(A ∩ B) = P(A)·P(B). Independence is a precise area condition, not a default.

Quick check

Quick check

0/4
Q1Events A and B both have non-zero probability and are mutually exclusive. Which statements are ALWAYS true? (select all that apply)select all that apply
Q2A and B are independent with P(A)=0.5 and P(B)=0.4. What is P(A ∩ B)?numerical answer — type a number
Q3A and B are mutually exclusive with P(A)=0.3 and P(B)=0.4. What is P(A ∪ B)?numerical answer — type a number
Q4You draw one card from a standard 52-card deck. Let A = 'the card is a King' and B = 'the card is a Heart'. Which best describes A and B?

Practice this in an interview

All questions
What is the difference between independent events and mutually exclusive events?

Mutually exclusive events cannot both occur at once — knowing one happened tells you the other didn't. Independent events can both occur, but knowing one happened gives no information about the other. These concepts are nearly opposite: non-trivial mutually exclusive events are always dependent.

State the law of total probability and give a concrete example of when you'd apply it.

The law of total probability decomposes P(A) over a mutually exclusive, exhaustive partition of the sample space: P(A) = Σ P(A|Bᵢ)·P(Bᵢ). It is the engine behind the Bayes denominator and any calculation where you want an overall rate built from segment-level rates.

What is the difference between Gini impurity and entropy as splitting criteria in decision trees?

Both measure node impurity but differ in computation and sensitivity. Gini is faster to compute and slightly favors larger partitions, while entropy (information gain) is more sensitive to class probability changes near 0.5. In practice the splits they produce are nearly identical.

What is the birthday problem and what does it reveal about probability intuition?

In a room of just 23 people, the probability that at least two share a birthday exceeds 50 %. The counterintuitive result comes from counting the large number of pairs rather than comparing each person to a fixed date — an example of how our intuition systematically underestimates collision probabilities.

Sign in to track your progress

Completed lessons, your XP, level, and streak save to your account — it's free and takes a few seconds.

Explore further

Related lessons

Skip to content