Intuition The ONE core idea
A probability space is just a careful way of describing a random situation: it names everything that could happen , decides which questions about the outcome we are allowed to ask , and then spreads exactly 1 unit of "certainty-paint" over those questions. Every symbol below is one word in that single sentence — learn them and the whole topic reads like plain English.
Before you can read the parent note Probability space , you must recognise every symbol it throws at you. This page builds them from zero , in an order where each one leans only on the ones before it.
Everything in probability is built from sets — collections of things. So we start there.
Definition Set, element, and the symbol
∈
A set is a bag of distinct objects. The objects are its elements .
x ∈ S is read "x is in the set S " — x is one of the objects in the bag.
x ∈ / S means "x is not in S ".
Picture: a rounded blob (the bag) with dots inside it (the elements).
Look at figure s01: the lavender blob is a set, each dot is an element. The dot with the arrow satisfies x ∈ S ; the dot outside satisfies y ∈ / S . That is all the symbol ∈ ever means.
Definition Subset — the symbol
⊆
A ⊆ B means "every element of A is also in B " — A sits entirely inside B .
Picture: a small blob A drawn completely inside a bigger blob B .
Why probability needs it: an "event" (like "the die shows an even number") is always a subset of all possible outcomes. Subset is how we say "this collection of outcomes lives inside the big collection".
Definition Empty set — the symbol
∅
∅ is the set with no elements — the empty bag.
Why probability needs it: it models the impossible event ("the die shows a 7"). Later the parent proves P ( ∅ ) = 0 .
These three operations are the entire grammar of "events". The parent uses all of them constantly.
A c
A c (read "A complement ") is everything not in A , staying inside the surrounding universe Ω .
Picture (s02, left): the whole box is Ω ; A is the coral blob; A c is all the shaded area outside it .
Plain meaning: the event "A did not happen".
A ∪ B
A ∪ B (read "A union B ") is everything in A or B or both — the two blobs merged.
Picture (s02, middle): both blobs fully coloured.
Plain meaning: "at least one of A , B happened".
A ∩ B
A ∩ B (read "A intersect B ") is everything in A and B at once — the overlap.
Picture (s02, right): only the lens-shaped overlap is coloured.
Plain meaning: "both A and B happened".
Definition Disjoint sets and set difference
A and B are disjoint if A ∩ B = ∅ — they never overlap , they share no outcome.
B ∖ A (read "B minus A ") is what is in B but not in A .
Why probability needs "disjoint": Kolmogorov's key axiom (A3) only adds probabilities when events are disjoint. "Disjoint" is the licence to add.
Mnemonic Reading the connectives
∪ looks like a U → "U nion" → OR .
∩ is the other way up → AND .
superscript c → c omplement → NOT .
The parent doesn't stop at two events — it uses infinitely many . Three "big operator" symbols handle that.
Definition Indexed sequence
A 1 , A 2 , A 3 , …
The little number is an index : A i is "the i -th event". The list A 1 , A 2 , … can go on forever.
Picture: a numbered row of blobs A 1 , A 2 , A 3 , … stretching to the right.
Definition Big union / big intersection
⋃ i = 1 ∞ A i = A 1 ∪ A 2 ∪ A 3 ∪ ⋯
= every outcome in at least one of the A i .
⋂ i = 1 ∞ A i = A 1 ∩ A 2 ∩ A 3 ∩ ⋯
= every outcome in all of the A i simultaneously.
Why the number "∞ " on top? It says "keep going forever". The word countable means "labellable by 1 , 2 , 3 , … " — you can list them one at a time even if the list never ends. This is exactly the case Kolmogorov's axiom A3 covers.
Definition The sum symbol
∑
∑ i = 1 ∞ p i = p 1 + p 2 + p 3 + ⋯
is just "add them all up " — the numbers, not the sets. In the axioms it adds the probabilities of disjoint events.
Picture: a growing bar chart whose bars stack to a total height.
⋃ /⋂ /∑ are the crucial trio
Sets get combined with ⋃ , ⋂ ; their sizes get totalled with ∑ . Kolmogorov axiom A3 is the bridge: "the size of a union of disjoint sets equals the sum of their sizes ". You cannot even state A3 without these three symbols.
Now the actual objects of the parent note. Each is built from Sections 0–2.
Ω — the sample space
Ω (Greek capital "omega ") is the set of every possible outcome of the random experiment. A single outcome is written ω (small omega), so ω ∈ Ω .
Picture (s03, the big frame): the whole box holding all dots. For a die, Ω = { 1 , 2 , 3 , 4 , 5 , 6 } ; for a dart on [ 0 , 1 ] , Ω is that whole segment.
Why needed: you must fix "what can happen" before measuring how likely anything is.
F — the sigma-algebra (list of allowed questions)
F (fancy "F ") is a collection of subsets of Ω . Each subset it contains is called an event . It is not a set of outcomes — it is a set of sets .
Picture (s03): the highlighted sub-blobs are the events F allows; F is the catalogue of these allowed blobs.
Why needed: on infinite Ω you cannot fairly measure every subset, so F is the curated list of measurable ones. Its closure rules (Ω ∈ F ; closed under c ; closed under ⋃ ) are exactly the OR/AND/NOT grammar from Sections 1–2, guaranteeing the question-list is logically complete.
P — the probability measure
P is a function P : F → [ 0 , 1 ] . It takes an event (a member of F ) and returns a number between 0 and 1 — that event's probability.
Picture (s04): a machine with an event going into the slot and a number on the dial from 0 to 1 coming out.
Why needed: it is the actual "certainty-paint" of the intuition callout — how much of the total 1 unit each event receives.
Definition Function-arrow notation
f : X → Y
P : F → [ 0 , 1 ] reads "P is a rule sending each thing in F to a value in [ 0 , 1 ] ".
F = domain (what you may feed in — events).
[ 0 , 1 ] = codomain (what may come out — a probability).
The bracket [ 0 , 1 ] means "all real numbers from 0 to 1 , endpoints included ".
( Ω , F , P )
Writing three objects inside one set of parentheses just means "bundle these together as one package ". ( Ω , F , P ) is the complete probability space: the stage, the allowed questions, and the paint, all named at once.
The parent's examples lean on two more notations. Meet them now.
∣ A ∣ — size (cardinality) of a finite set
∣ A ∣ = the number of elements in A . For the die, ∣ { 2 , 4 , 6 } ∣ = 3 .
Why needed: on an equally-likely finite space, P ( A ) = ∣ A ∣/∣Ω∣ — "favourable outcomes over total".
2 Ω — the power set
2 Ω is the set of all subsets of Ω . If Ω has n elements, 2 Ω has 2 n of them — hence the notation. For the 6-sided die, 2 Ω has 2 6 = 64 events.
Why needed: on a finite Ω we may safely take F = 2 Ω (every subset is an event). On infinite Ω we usually cannot — that's the whole reason F exists.
Recall Check: is
F ever smaller than 2 Ω ?
Yes ::: On uncountable Ω (like [ 0 , 1 ] ) non-measurable sets force F (e.g. the Borel sigma-algebra ) to be a strict subset of 2 Ω .
complement union intersection
big union big intersection and sum
F sigma-algebra of events
Kolmogorov axioms A1 A2 A3
Conditional probability and independence
Random variables and expectation
The map reads bottom-up: raw set language builds Ω , F , and P ; bundling them gives the triple; the axioms live on top; and from there the rest of probability — Conditional probability & independence , Random variables , Expectation and Lebesgue integral — grows. The Inclusion–exclusion principle and Measure theory & Lebesgue integration extend the same machinery.
Cover the right-hand side and test yourself. If any is fuzzy, re-read its section above before opening the parent.
x ∈ S means ::: x is an element of (is inside) the set S .
A ⊆ B means ::: every element of A is also in B ; A sits entirely inside B .
∅ is ::: the empty set — no elements — modelling the impossible event.
A c is ::: the complement of A : everything in Ω that is not in A ("not A ").
A ∪ B is ::: the union: outcomes in A or B or both ("at least one").
A ∩ B is ::: the intersection: outcomes in both A and B ("both").
"A and B are disjoint" means ::: A ∩ B = ∅ ; they share no outcome, so probabilities may be added.
⋃ i = 1 ∞ A i is ::: outcomes lying in at least one A i of an infinite (countable) list.
⋂ i = 1 ∞ A i is ::: outcomes lying in all of the A i at once.
∑ i = 1 ∞ p i is ::: the running total p 1 + p 2 + p 3 + ⋯ of the numbers.
"countable" means ::: labellable one-by-one by 1 , 2 , 3 , … , even if the list never ends.
Ω is ::: the sample space — the set of all possible outcomes ω .
F is ::: the sigma-algebra — the collection of subsets of Ω we call events.
P : F → [ 0 , 1 ] means ::: P takes an event and returns its probability, a number from 0 to 1 inclusive.
( Ω , F , P ) is ::: the probability space — the three ingredients bundled as one package.
∣ A ∣ is ::: the number of elements in a finite set A .
2 Ω is ::: the power set — all subsets of Ω ; has 2 n members if ∣Ω∣ = n .