|q⟩ Bad Qubits

beginner · Physics · Math Foundations: Calculus, Probability & Statistics

Probability Axioms

Sample spaces and events

A sample space Ω\Omega is the set of all possible outcomes of a random experiment. A probability measure assigns to each subset EΩE \subseteq \Omega (called an event) a number P(E)P(E) satisfying three axioms stated by Kolmogorov (1933):

  1. Non-negativity: P(E)0P(E) \geq 0 for every event EE.
  2. Normalization: P(Ω)=1P(\Omega) = 1.
  3. Countable additivity: if E1,E2,E_1, E_2, \ldots are mutually exclusive (disjoint) events, then P(E1E2)=P(E1)+P(E2)+P(E_1 \cup E_2 \cup \cdots) = P(E_1) + P(E_2) + \cdots

From these three axioms every other probability rule can be derived — nothing extra needs to be assumed.

Derived rules

Complement rule. Because EE and its complement EcE^c partition Ω\Omega, axioms 2 and 3 give

P(Ec)=1P(E).P(E^c) = 1 - P(E).

Addition rule. For any two events AA and BB (not necessarily disjoint),

P(AB)=P(A)+P(B)P(AB).P(A \cup B) = P(A) + P(B) - P(A \cap B).

The subtraction corrects for double-counting the overlap ABA \cap B. When AA and BB are mutually exclusive P(AB)=0P(A \cap B) = 0 and the rule reduces to axiom 3.

Example. Roll a fair six-sided die, so Ω={1,2,3,4,5,6}\Omega = \{1,2,3,4,5,6\} and each outcome has probability 16\frac{1}{6} by symmetry (normalization and equal weights). Let A={1,2,3}A = \{1,2,3\} and B={3,4,5}B = \{3,4,5\}. Then AB={3}A \cap B = \{3\}, so

P(AB)=36+3616=56.P(A \cup B) = \frac{3}{6} + \frac{3}{6} - \frac{1}{6} = \frac{5}{6}.

Why this matters for quantum mechanics

Quantum measurement outcomes are inherently probabilistic — the Born rule says the probability of measuring outcome kk is pk=kψ2p_k = |\langle k | \psi \rangle|^2. For these probabilities to be consistent, the set {pk}\{p_k\} must satisfy exactly Kolmogorov's axioms: each pk0p_k \geq 0, and the sum over all possible outcomes equals 1 (normalization of ψ|\psi\rangle guarantees this). Understanding the axioms is therefore a prerequisite for reasoning about quantum measurement.

Try it

This is a numerical exercise — your code should return a number, not a circuit. A fair six-sided die is rolled once. Let A={1,2,3}A = \{1,2,3\} and B={3,4,5}B = \{3,4,5\}. Compute P(AB)P(A \cup B) using the addition rule.

Run your code to see the quantum state.

Sign in on the full site to ask questions and join the discussion.