1.2 — Probability Axioms and Rules

1.2 — Probability Axioms and Rules#

Now that we understand sample spaces and events, we need a way to assign probabilities to events. This lesson introduces the probability axioms (fundamental rules that all probabilities must follow) and derived rules for calculating probabilities.

What is Probability?#

Probability is a number between 0 and 1 that quantifies how likely an event is to occur. Learn more: Probability

Notation: denotes the probability of event .

The Three Probability Axioms#

All probability theory is built on three fundamental axioms (rules that cannot be proven but are accepted as true). Learn more: Probability Axioms

Axiom 1: Non-Negativity#

For any event , the probability is non-negative:

Interpretation: Probabilities cannot be negative.

Axiom 2: Normalization#

The probability of the sample space (certain event) is 1:

Interpretation: Something must happen. The sum of probabilities of all possible outcomes is 1.

Axiom 3: Additivity#

For any collection of mutually exclusive events :

Interpretation: The probability of “A or B or C…” equals the sum of individual probabilities when events cannot occur simultaneously.

Derived Probability Rules#

From these three axioms, we can derive many useful rules:

Rule 1: Complement Rule#

The probability of the complement of event is:

Proof: Since and are mutually exclusive and : Therefore:

Example: If probability of rain is 0.3, then probability of no rain is .

Rule 2: Probability of Impossible Event#

Proof: Since and :

Rule 3: Monotonicity#

If event , then:

Interpretation: If always implies , then cannot be more probable than .

Example: If = “Roll a 6” and = “Roll an even number”, then .

Rule 4: Addition Rule (General Case)#

For any two events and :

Why subtract? When we add , we count outcomes in twice, so we subtract once.

Example:

Rule 5: Addition Rule for Mutually Exclusive Events#

If events and are mutually exclusive (), then:

This is a special case of Rule 4 where .

Equally Likely Outcomes#

When all outcomes in a sample space are equally likely, we can use:

Examples#

Example 1: Fair Die

Example 2: Even Number

Example 3: Card Draw

Probability Bounds#

From the axioms, we can show that for any event :

This follows from:

Financial Applications#

Portfolio Returns#

Example: Portfolio can have three outcomes:

Check: ✓ (satisfies normalization)

Question: What’s the probability of NOT getting a low return?

Risk Events#

Example: Two independent risk events:

Question: What’s the probability of at least one risk event?

Trading Outcomes#

Example: Daily trading outcomes:

Check:

Python Implementation#

Let’s implement probability calculations in Python:

def probability_complement(p_a):
    """Calculate probability of complement event"""
    return 1 - p_a

def probability_union(p_a, p_b, p_intersection):
    """Calculate P(A ∪ B) = P(A) + P(B) - P(A ∩ B)"""
    return p_a + p_b - p_intersection

def probability_union_mutually_exclusive(p_a, p_b):
    """Calculate P(A ∪ B) when A and B are mutually exclusive"""
    return p_a + p_b

# Example: Die roll
p_even = 3/6  # Probability of even number
p_greater_4 = 2/6  # Probability of > 4
p_six = 1/6  # Probability of 6 (intersection)

# Probability of even OR > 4
p_even_or_greater_4 = probability_union(p_even, p_greater_4, p_six)
print(f"P(even OR > 4) = {p_even_or_greater_4:.3f}")

# Probability of NOT even
p_not_even = probability_complement(p_even)
print(f"P(not even) = {p_not_even:.3f}")

# Example: Mutually exclusive events
p_one = 1/6  # Probability of rolling 1
p_six = 1/6  # Probability of rolling 6
p_one_or_six = probability_union_mutually_exclusive(p_one, p_six)
print(f"P(1 OR 6) = {p_one_or_six:.3f}")

Common Mistakes#

  1. Adding probabilities without checking for overlap

    • Wrong: (only true if mutually exclusive)
    • Right:
  2. Forgetting the complement rule

    • Instead of calculating directly, use
  3. Assuming equally likely outcomes

    • Only use when outcomes are equally likely
    • In finance, outcomes are rarely equally likely!

Key Takeaways#

  1. Three Axioms: Non-negativity, Normalization, Additivity
  2. Complement Rule:
  3. Addition Rule:
  4. Mutually Exclusive: when
  5. Equally Likely: when all outcomes are equally likely

Next Steps#

In the next lesson, we’ll explore independence and dependence between events, which is crucial for understanding relationships in financial data and risk analysis.