datarekha

Sample Space, Events & Axioms

Probability is built on three short rules. Get the axioms and inclusion-exclusion right and every later probability question rests on solid ground.

6 min read Beginner GATE DA Lesson 4 of 122

What you'll learn

  • Sample space, outcomes, and events as subsets of the sample space
  • The three axioms: non-negativity, P(S) = 1, and additivity for disjoint events
  • Derived rules: P(complement) = 1 - P(A), P(empty) = 0, monotonicity
  • Inclusion-exclusion: P(A union B) = P(A) + P(B) - P(A intersect B)

Before you start

Roll a die. The outcome can be 1, 2, 3, 4, 5, or 6. That whole list is the sample space S; one number is an outcome; “even” means the subset {2,4,6} — that’s an event. Probability is just a function that puts a number on each event.

Here’s the surprising part. Three short rules — the axioms — already pin down every probability identity you’ll ever use. Get them right and the rest of the chapter is mostly bookkeeping. (They’re also the sanity checks every model’s output must pass: a classifier that reports class probabilities summing to 1.3, or a negative probability, has violated an axiom — and is simply broken.)

The three axioms

Axiom 1P(E) ≥ 0never negativeAxiom 2P(S) = 1something happensAxiom 3disjoint A, B:P(A∪B)=P(A)+P(B)add when no overlap
Three rules. Every other probability identity is derived from these.
  1. Non-negativity: P(E) ≥ 0 for every event E.
  2. Normalisation: P(S) = 1 — the total probability of the whole sample space is 1.
  3. Additivity: if A and B are disjoint (no shared outcomes, A ∩ B = ∅), then P(A ∪ B) = P(A) + P(B).

What the axioms force to be true

These small rules already settle the everyday facts you reach for constantly:

  • Empty event: P(∅) = 0. Since S and are disjoint and S ∪ ∅ = S, Axiom 3 gives P(S) = P(S) + P(∅), so P(∅) = 0.
  • Complement rule: P(Aᶜ) = 1 − P(A). An event and its complement are disjoint and together fill S, so P(A) + P(Aᶜ) = P(S) = 1. Rearrange.
  • Monotonicity: if A ⊆ B then P(A) ≤ P(B) — a bigger event can’t have smaller probability. (Split B into A and the disjoint leftover B ∩ Aᶜ, both ≥ 0.)
  • Bounded: combining the above, 0 ≤ P(A) ≤ 1 for every event.

Inclusion-exclusion — when events overlap

Axiom 3 only adds probabilities for disjoint events. When A and B overlap, adding P(A) + P(B) counts the overlap A ∩ B twice. Subtract it once:

SABA∩Bcounted twiceP(A∪B) = P(A) + P(B) − P(A∩B)
Add both regions, then remove the double-counted overlap once.

This is inclusion-exclusion: P(A ∪ B) = P(A) + P(B) − P(A ∩ B). When the events are disjoint, P(A ∩ B) = 0 and it collapses straight back to Axiom 3 — so additivity is just the no-overlap special case.

Drag the two circles around. Watch P(A), P(B), and the overlap P(A ∩ B) update as you move them. Slide the circles apart and the overlap collapses to zero — that’s when additivity (Axiom 3) applies cleanly without subtracting anything.

How GATE asks this

Usually an MCQ asking which statements are valid consequences of the axioms (the complement rule is true; “always add probabilities” is a trap), or a short NAT that hands you P(A), P(B), and P(A ∩ B) and asks for P(A ∪ B) — a direct inclusion-exclusion plug-in. The numbers are easy; the marks are lost by forgetting to subtract the overlap.

Worked example

Given P(A) = 0.5, P(B) = 0.4, and P(A ∩ B) = 0.2, find P(A ∪ B).

Apply inclusion-exclusion directly:

P(A ∪ B) = P(A) + P(B) − P(A ∩ B)
         = 0.5  + 0.4  − 0.2
         = 0.7

So P(A ∪ B) = 0.7. Contrast with the disjoint case: had the events been mutually exclusive, P(A ∩ B) would be 0 and P(A ∪ B) = 0.5 + 0.4 = 0.9. But here they overlap by 0.2 — ignoring that gives the wrong answer 0.9 instead of 0.7.

Quick check

Quick check

0/6
Q1For events with P(A) = 0.6, P(B) = 0.3, and P(A ∩ B) = 0.1, what is P(A ∪ B)?numerical answer — type a number
Q2Two mutually exclusive (disjoint) events have P(A) = 0.45 and P(B) = 0.25. What is P(A ∪ B)?numerical answer — type a number
Q3Which statements follow directly from the three probability axioms? (select all that apply)select all that apply
Q4A probability is claimed to be P(E) = 1.2 for some event E. Which axiom does this violate?
Q5In a class, P(passes Math) = 0.7, P(passes Physics) = 0.6, and P(passes both) = 0.5. What is the probability a student passes at least one of the two subjects?numerical answer — type a number
Q6Which single statement is ALWAYS true for any event A in sample space S?

Practice this in an interview

All questions
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.

When does each common distribution arise — Bernoulli, Binomial, Poisson, Normal, Exponential, Uniform?

Each distribution has a natural generative story: Bernoulli is a single coin flip; Binomial sums Bernoullis; Poisson counts rare arrivals; Normal emerges from sums of many small effects; Exponential models waiting times between Poisson events; Uniform assigns equal probability across a range. Choosing correctly comes from matching that story to the data-generating process.

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.

What is conditional probability, and how does it differ from joint probability?

Conditional probability P(A|B) is the probability of A given that B has already occurred, computed as P(A and B) / P(B). It narrows the sample space to B, whereas joint probability P(A and B) lives in the full, unrestricted space.

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