Timer 00:00

Axioms of Probability

Foundations of Uncertainty

Dr. Samir Orujov

School of Business (ADA)

September 2025

Learning Objectives - Part 1

🎯

Sample Spaces

Understand sample spaces and events as fundamental building blocks

📐

Three Axioms

Master Kolmogorov's three axioms that define probability

🔄

Properties

Derive and apply key properties from the axioms

Learning Objectives - Part 2

Addition Rule

Apply the addition rule for unions of events

🎲

Classical Probability

Calculate probabilities using equally likely outcomes

🔗

Conditional Probability

Understand probability given additional information

What is Probability?

The Mathematics of Uncertainty

Probability is a mathematical framework for quantifying uncertainty and randomness.

$$0 \leq P(A) \leq 1$$

Key Insight: Probability assigns numbers between 0 and 1 to events, where:

  • 0 = impossible event
  • 1 = certain event
  • 0.5 = equally likely to occur or not

Sample Space (Ω)

Definition

Sample Space: The set of all possible outcomes of a random experiment

Denoted by Ω (omega) or S

Examples

1
2
3
4
5
6

Rolling a die: Ω = {1, 2, 3, 4, 5, 6}

Flipping a coin: Ω = {H, T}

Measuring temperature: Ω = ℝ (all real numbers)

Events

Definition

Event: A subset of the sample space

An event is a collection of outcomes we're interested in

Die Rolling Examples

Event A: "Rolling an even number" = {2, 4, 6}

Event B: "Rolling less than 3" = {1, 2}

Event C: "Rolling a 7" = ∅ (impossible event)

Event D: "Rolling any number" = {1, 2, 3, 4, 5, 6} = Ω

Event Operations

Set Operations on Events

Union (A ∪ B)

"A or B occurs"

At least one happens

Intersection (A ∩ B)

"A and B occur"

Both happen

Complement (A')

"A does not occur"

Everything except A

Difference (A - B)

"A but not B"

A occurs, B doesn't

A B A∩B

Kolmogorov's Axioms (1933)

The Foundation of Modern Probability

Andrey Kolmogorov established three simple axioms that define all of probability theory

Just THREE rules create the entire framework!

Why Axioms?

• Provide mathematical rigor

• Ensure consistency

• Allow derivation of all other properties

• Unite different interpretations of probability

Axiom 1: Non-negativity

Statement

$P(A) \geq 0 \text{ for any event } A$

Meaning: Probabilities cannot be negative

Intuition

• You can't have "negative chance" of something happening

• Worst case: probability is 0 (impossible)

• This axiom ensures probabilities make logical sense

Axiom 2: Normalization

Statement

$P(\Omega) = 1$

Meaning: The probability of the entire sample space is 1

Intuition

• Something must happen when we perform an experiment

• The probability that "some outcome occurs" is certain (100%)

• This normalizes our probability scale from 0 to 1

Axiom 3: Countable Additivity

Statement

$\text{If } A_1, A_2, ... \text{ are disjoint events, then:}$ $P(A_1 \cup A_2 \cup ...) = P(A_1) + P(A_2) + ...$

Meaning: For mutually exclusive events, add their probabilities

Example: Rolling a Die

P(rolling 1 or 2) = P(rolling 1) + P(rolling 2) = 1/6 + 1/6 = 1/3

Note: This only works when events can't happen together!

Interactive Axiom Checker

🔍 Verify the Axioms

Enter probabilities to check

Properties Derived from Axioms

What We Can Prove

1. $P(\emptyset) = 0$ (empty set has probability 0)

2. $P(A') = 1 - P(A)$ (complement rule)

3. $P(A) \leq 1$ for any event A

4. If $A \subseteq B$, then $P(A) \leq P(B)$

Proof: Complement Rule

Proving P(A') = 1 - P(A)

Step 1: Note that A and A' are disjoint

Step 2: A ∪ A' = Ω (covers everything)

Step 3: By Axiom 2: P(A ∪ A') = P(Ω) = 1

Step 4: By Axiom 3: P(A ∪ A') = P(A) + P(A')

Step 5: Therefore: P(A) + P(A') = 1

Result: P(A') = 1 - P(A) ✓

Addition Rule (General Case)

For Any Two Events

$P(A \cup B) = P(A) + P(B) - P(A \cap B)$

Why subtract P(A∩B)? We counted it twice!

A B A∩B (counted twice)

Addition Rule Calculator

🧮 Calculate P(A ∪ B)

P(A∪B) = 0.6

🎯 Practice (2 minutes)

If P(rain) = 0.3, P(cold) = 0.4, P(rain AND cold) = 0.15, what's P(rain OR cold)?

Classical Probability

Equally Likely Outcomes

$P(A) = \frac{\text{Number of favorable outcomes}}{\text{Total number of outcomes}}$ $P(A) = \frac{|A|}{|Ω|}$

Assumption: All outcomes are equally likely

Example: Card Drawing

Drawing a heart from a standard deck:

P(heart) = 13/52 = 1/4

Coin Flip Simulator

🪙 Law of Large Numbers Demo

0
Heads
0
Tails
0
Total Flips
0.00
P(Heads)

Conditional Probability

Probability Given Information

$P(A|B) = \frac{P(A \cap B)}{P(B)}, \text{ where } P(B) > 0$

Read as: "Probability of A given B"

Meaning: The probability of A occurring, knowing that B has occurred

Conditional Probability - Dice Example

Rolling a Die

Given: The roll is even

Find: P(roll > 4 | even)

1
2
3
4
5
6

Solution:

Even outcomes: {2, 4, 6}

Even AND > 4: {6}

P(>4 | even) = 1/3

Conditional Probability Calculator

🎯 Calculate P(A|B)

P(A|B) = 0.50

🏥 Medical Test Example (3 minutes)

A test is positive for 90% of sick patients and 5% of healthy patients.

If 1% of the population is sick, what's P(sick|positive)?

Independence

When Events Don't Affect Each Other

Events A and B are independent if:

$P(A \cap B) = P(A) \cdot P(B)$

Equivalent conditions:

• P(A|B) = P(A)

• P(B|A) = P(B)

Examples

Independent: Two coin flips

Dependent: Drawing cards without replacement

Independence Checker

🔍 Test for Independence

Enter values to check

Bayes' Theorem

Reversing Conditional Probabilities

$P(A|B) = \frac{P(B|A) \cdot P(A)}{P(B)}$

Components:

• P(A): Prior probability

• P(B|A): Likelihood

• P(A|B): Posterior probability

Bayes' Theorem Calculator

🔄 Calculate Posterior Probability

Enter values

Review Quiz - Question 1

Which of the following is NOT one of Kolmogorov's axioms?

Correct! P(A') = 1 - P(A) is a property that can be derived from the axioms, but it is not one of the three fundamental axioms itself.

Review Quiz - Question 2

If P(A) = 0.4, P(B) = 0.3, and A and B are disjoint, what is P(A∪B)?

Correct! Since A and B are disjoint (P(A∩B) = 0), P(A∪B) = P(A) + P(B) = 0.4 + 0.3 = 0.7

Review Quiz - Question 3

If P(A) = 0.5 and P(B) = 0.4, and A and B are independent, what is P(A∩B)?

Correct! For independent events, P(A∩B) = P(A) × P(B) = 0.5 × 0.4 = 0.2

📋 Summary: The Foundations of Probability

🎯 What We've Learned

📊

Kolmogorov's Three Axioms

The mathematical foundation that defines probability as a measure on events

🔧

Derived Properties

Complement rule, addition rule, and other essential probability rules

🎲

Practical Applications

From coin flips to conditional probability and Bayes' theorem

💡

Real-World Connections

How probability theory applies to statistics, finance, and decision-making

🎯 Final Reflection

Think about: How will you use these probability concepts in your future coursework and career?

🚀 Next Steps in Your Probability Journey

📚 Coming Up

  • Random Variables: Functions that assign numbers to outcomes
  • Probability Distributions: Patterns of randomness
  • Expected Value: The average outcome over many trials
  • Central Limit Theorem: Why normal distributions are everywhere

🏠 Homework Preview

Practice Problems: Apply the axioms to solve real-world probability questions involving cards, dice, and everyday scenarios.

💭 Remember

"Probability is not just about chance—it's the language of uncertainty that helps us make informed decisions."

Use ← → arrow keys or buttons to navigate • Press F11 for fullscreen

✅ Key Takeaways

Three Axioms

1. Non-negativity: P(A) ≥ 0

2. Normalization: P(Ω) = 1

3. Additivity: P(A ∪ B) = P(A) + P(B) for disjoint A, B