16.2 Addition Rule, Multiplication Rule, Independent Events & Conditional Probability

Key Takeaways

  • Kolmogorov's probability axioms establish that event probabilities are real numbers bounded by $0 \le P(A) \le 1$ summing to 1 over sample space $S$, directly yielding the complement rule $P(A') = 1 - P(A)$ and the 'at least one' identity $P(\ge 1) = 1 - P(0)$.
  • The General Addition Rule $P(A \cup B) = P(A) + P(B) - P(A \cap B)$ subtracts the joint intersection to eliminate double-counting; it simplifies to $P(A) + P(B)$ if and only if events $A$ and $B$ are mutually exclusive (disjoint).
  • Conditional probability restricts the reference sample space to conditioning event $B$: $P(A|B) = \frac{P(A \cap B)}{P(B)}$, generating the General Multiplication Rule $P(A \cap B) = P(B) \cdot P(A|B)$.
  • Events $A$ and $B$ are statistically independent if and only if $P(A|B) = P(A)$ (or $P(A \cap B) = P(A) \cdot P(B)$); mutually exclusive events with positive probabilities can never be independent because the occurrence of one forces the probability of the other to zero.
  • Sequential multi-stage experiments are modeled with probability tree diagrams, where path probabilities are calculated by multiplying along branches and combined across disjoint paths using the Law of Total Probability and Bayes' Theorem.
Last updated: September 2026

16.2 Addition Rule, Multiplication Rule, Independent Events & Conditional Probability

Axiomatic Foundations of Probability & The Complement Rule

Modern probability theory is formalized through the Kolmogorov Axioms. Given a sample space $S$ representing the set of all possible mutually exclusive outcomes of a random phenomenon, a probability measure $P$ assigns a real number to each event $A \subseteq S$ satisfying three foundational axioms:

  1. Axiom 1 (Non-Negativity): For any event $A$, $P(A) \ge 0$.
  2. Axiom 2 (Unitarity / Normalization): The probability of the entire sample space is unity: $P(S) = 1$.
  3. Axiom 3 (Countable Additivity): If $A_1, A_2, A_3, \dots$ is a countable sequence of pairwise mutually exclusive (disjoint) events (where $A_i \cap A_j = \emptyset$ for all $i \ne j$), then: P(i=1Ai)=i=1P(Ai)P\left(\bigcup_{i=1}^\infty A_i\right) = \sum_{i=1}^\infty P(A_i)

From these three axioms, all fundamental probability theorems emerge. Because the sample space can be partitioned into any event $A$ and its complement $A'$ (or $A^c$, representing all outcomes in $S$ not in $A$) such that $A \cap A' = \emptyset$ and $A \cup A' = S$, applying Axioms 2 and 3 yields $P(A \cup A') = P(A) + P(A') = P(S) = 1$. This establishes the Complement Rule: P(A)=1P(A)    P(A)=1P(A)P(A') = 1 - P(A) \iff P(A) = 1 - P(A')

A vital application on the FTCE Mathematics 6-12 examination is solving 'at least one' compound probability problems. When an experiment involves $n$ independent trials, each with success probability $p$, finding the probability of obtaining at least one success directly requires summing multiple binomial terms. Applying the complement rule collapses the calculation to a single step: P(at least 1 success)=1P(zero successes)=1(1p)nP(\text{at least 1 success}) = 1 - P(\text{zero successes}) = 1 - (1 - p)^n


The Addition Rule: Disjoint vs. Overlapping Events

The union of two events, denoted $A \cup B$ (or '$A$ or $B$'), represents the event that event $A$ occurs, event $B$ occurs, or both occur.

Mutually Exclusive (Disjoint) Events

Two events $A$ and $B$ are mutually exclusive (or disjoint) if they cannot occur simultaneously. Their intersection is the empty set: $A \cap B = \emptyset$, which implies $P(A \cap B) = 0$. By Axiom 3, the addition rule for mutually exclusive events is strictly additive: P(AB)=P(A)+P(B)P(A \cup B) = P(A) + P(B)

Overlapping (Non-Mutually Exclusive) Events

When events $A$ and $B$ can occur concurrently ($A \cap B \ne \emptyset$), adding $P(A)$ and $P(B)$ counts the outcomes in the intersection twice. To correct for this double-counting, we subtract the joint probability, yielding the General Addition Rule: P(AB)=P(A)+P(B)P(AB)P(A \cup B) = P(A) + P(B) - P(A \cap B)

Geometrically visualized through a Venn diagram, this corresponds to the principle of inclusion-exclusion. For three overlapping events $A, B$, and $C$, the rule extends to: P(ABC)=P(A)+P(B)+P(C)P(AB)P(AC)P(BC)+P(ABC)P(A \cup B \cup C) = P(A) + P(B) + P(C) - P(A \cap B) - P(A \cap C) - P(B \cap C) + P(A \cap B \cap C)


Conditional Probability & The General Multiplication Rule

In many probabilistic systems, obtaining partial information alters the likelihood of an event. The conditional probability of an event $A$ given that event $B$ has occurred, denoted $P(A|B)$, is defined mathematically as: P(AB)=P(AB)P(B),provided P(B)>0P(A|B) = \frac{P(A \cap B)}{P(B)}, \quad \text{provided } P(B) > 0

Conceptual Meaning of Conditioning

Conditioning on event $B$ physically collapses the sample space: outcomes outside of $B$ are discarded, making $B$ the new, restricted sample space. Within this restricted universe, the only favorable outcomes for $A$ are those residing in the intersection $A \cap B$. Dividing by $P(B)$ rescales the remaining probabilities so that $P(B|B) = 1$.

Rearranging the conditional probability definition yields the General Multiplication Rule, which calculates the joint probability of two events occurring together: P(AB)=P(B)×P(AB)=P(A)×P(BA)P(A \cap B) = P(B) \times P(A|B) = P(A) \times P(B|A) For a sequential chain of $k$ events, the rule generalizes via the chain rule of probability: P(A1A2Ak)=P(A1)×P(A2A1)×P(A3A1A2)××P(AkA1Ak1)P(A_1 \cap A_2 \cap \dots \cap A_k) = P(A_1) \times P(A_2|A_1) \times P(A_3|A_1 \cap A_2) \times \dots \times P(A_k|A_1 \cap \dots \cap A_{k-1})


Independent vs. Dependent Events and Sampling Paradigms

Two events $A$ and $B$ are statistically independent if the occurrence of one event provides zero information about the likelihood of the other event. Formally, $A$ and $B$ are independent if and only if: P(AB)=P(A)orP(BA)=P(B)P(A|B) = P(A) \quad \text{or} \quad P(B|A) = P(B) Substituting this condition into the General Multiplication Rule produces the Multiplication Rule for Independent Events: P(AB)=P(A)×P(B)P(A \cap B) = P(A) \times P(B) This product identity serves as the definitive mathematical test for independence on the examination: if $P(A \cap B) = P(A) \cdot P(B)$, the events are independent; if $P(A \cap B) \ne P(A) \cdot P(B)$, the events are dependent.

Crucial Conceptual Distinction: Mutually Exclusive vs. Independent

A ubiquitous trap for mathematics educators is confusing mutually exclusive events with independent events:

  • Mutually exclusive means the events cannot happen together: $P(A \cap B) = 0$.
  • Independent means the occurrence of one does not affect the other: $P(A \cap B) = P(A)P(B)$.

If two events $A$ and $B$ have non-zero probabilities ($P(A) > 0$ and $P(B) > 0$) and are mutually exclusive, can they ever be independent? No, never! P(AB)=0P(A)×P(B)P(A \cap B) = 0 \ne P(A) \times P(B) Knowing that event $B$ occurred completely guarantees that event $A$ cannot occur ($P(A|B) = 0 \ne P(A)$). Mutually exclusive events with positive probabilities are maximally dependent.

Sampling With Replacement vs. Without Replacement

  • Sampling with replacement: The sampled object is returned to the population before the next draw. Successive trials are independent, and probabilities remain constant across all stages.
  • Sampling without replacement: The sampled object is removed from the population. Successive trials are dependent, as the pool size and item counts decrease, altering conditional probabilities at each subsequent stage.

Probability Tree Diagrams, Law of Total Probability & Bayes' Theorem

A probability tree diagram models sequential multi-stage random experiments:

  1. The root branches into primary events representing a partition of the sample space ${B_1, B_2, \dots, B_k}$ with prior probabilities $P(B_i)$.
  2. Secondary branches from each $B_i$ represent conditional probabilities $P(A|B_i)$ of an observed event $A$.
  3. Multiplying probabilities along any path from root to leaf yields the joint probability of that specific path: $P(B_i \cap A) = P(B_i) \times P(A|B_i)$.

The Law of Total Probability

Because the branches ${B_1, B_2, \dots, B_k}$ form a complete partition of the sample space ($B_i \cap B_j = \emptyset$ and $\bigcup B_i = S$), the overall unconditional probability of event $A$ is the sum of the disjoint path intersections: P(A)=i=1kP(BiA)=i=1kP(Bi)×P(ABi)P(A) = \sum_{i=1}^k P(B_i \cap A) = \sum_{i=1}^k P(B_i) \times P(A|B_i)

Bayes' Theorem: Inverting Conditional Probabilities

Bayes' Theorem calculates posterior probabilities—the probability that a specific underlying cause $B_j$ occurred given that observed outcome $A$ has taken place: P(BjA)=P(BjA)P(A)=P(Bj)×P(ABj)i=1kP(Bi)×P(ABi)P(B_j|A) = \frac{P(B_j \cap A)}{P(A)} = \frac{P(B_j) \times P(A|B_j)}{\sum_{i=1}^k P(B_i) \times P(A|B_i)}


Probability Rules & Axiomatic Formulas Reference Matrix

Probability TheoremAlgebraic ExpressionGoverning Condition / DomainKey Exam Insight / Common Fallacy
Complement Rule$P(A') = 1 - P(A)$Universal for all eventsEssential for 'at least one' calculations: $1 - P(0)$
Addition Rule (Disjoint)$P(A \cup B) = P(A) + P(B)$Mutually exclusive only ($A \cap B = \emptyset$)Do NOT use if events can occur simultaneously
General Addition Rule$P(A \cup B) = P(A) + P(B) - P(A \cap B)$Universal for all joint eventsSubtracts intersection to eliminate double-counting
Conditional Probability$P(A|B) = \frac{P(A \cap B)}{P(B)}$Requires $P(B) > 0$$P(A|B) \ne P(B|A)$ (confusion is Prosecutor's Fallacy)
General Multiplication$P(A \cap B) = P(B) \times P(A|B)$Universal for all joint eventsAccounts for updated sample space in dependent trials
Multiplication (Independent)$P(A \cap B) = P(A) \times P(B)$Independent events onlyDefinitive algebraic test for event independence
Law of Total Probability$P(A) = \sum P(B_i)P(A|B_i)$${B_i}$ partitions sample space $S$Sum of all path probabilities leading to outcome $A$
Bayes' Theorem$P(B_j|A) = \frac{P(B_j)P(A|B_j)}{\sum P(B_i)P(A|B_i)}$Inverts conditioning from cause to effectResolves base rate neglect in medical/forensic screening

Worked Exemplar: Medical Diagnostic Screening & False Positive Analysis

Problem: A rare medical condition is present in $1%$ of a population ($P(D) = 0.01$). A laboratory diagnostic screening test has a sensitivity of $98%$ ($P(+|D) = 0.98$, the true positive rate) and a false positive rate of $3%$ ($P(+|D^c) = 0.03$, meaning specificity is $97%$). A randomly selected individual tests positive. What is the probability that this person actually has the condition?

Analytical Solution via Tree Diagram and Bayes' Theorem

  1. Define the Prior Probabilities:

    • Patient has the disease: $P(D) = 0.01$
    • Patient does not have the disease: $P(D^c) = 1 - 0.01 = 0.99$
  2. Identify the Conditional Branch Probabilities:

    • True Positive: $P(+|D) = 0.98$
    • False Negative: $P(-|D) = 1 - 0.98 = 0.02$
    • False Positive: $P(+|D^c) = 0.03$
    • True Negative: $P(-|D^c) = 1 - 0.03 = 0.97$
  3. Compute Joint Path Probabilities for a Positive Test Result:

    • Path 1 (Has disease and tests positive): P(D+)=P(D)×P(+D)=(0.01)(0.98)=0.0098P(D \cap +) = P(D) \times P(+|D) = (0.01)(0.98) = 0.0098
    • Path 2 (Healthy and tests positive - false positive): P(Dc+)=P(Dc)×P(+Dc)=(0.99)(0.03)=0.0297P(D^c \cap +) = P(D^c) \times P(+|D^c) = (0.99)(0.03) = 0.0297
  4. Compute Total Probability of Testing Positive (Law of Total Probability): P(+)=P(D+)+P(Dc+)=0.0098+0.0297=0.0395P(+) = P(D \cap +) + P(D^c \cap +) = 0.0098 + 0.0297 = 0.0395

  5. Evaluate Posterior Probability via Bayes' Theorem: P(D+)=P(D+)P(+)=0.00980.0395=983950.2481(24.81%)P(D|+) = \frac{P(D \cap +)}{P(+)} = \frac{0.0098}{0.0395} = \frac{98}{395} \approx 0.2481 \quad (24.81\%)

Pedagogical Insight: Resolving the False Positive Paradox

Even though the screening test boasts $98%$ sensitivity and $97%$ specificity, a person testing positive has only an approximately $24.8%$ probability of having the disease! This counter-intuitive result stems from base rate neglect: because the disease is rare ($1%$), the large pool of healthy individuals ($99%$) produces nearly three times as many false positives ($0.0297$) as the tiny pool of diseased individuals produces true positives ($0.0098$).

Test Your Knowledge

In a graduating senior class, 45% of students are enrolled in Physics, 35% are enrolled in Calculus, and 20% are enrolled simultaneously in both Physics and Calculus. If a senior is selected at random, what is the probability that the student is enrolled in Physics or Calculus, but NOT both courses?

A
B
C
D
Test Your Knowledge

An urn contains 5 red marbles, 4 blue marbles, and 3 green marbles. Two marbles are drawn sequentially without replacement. What is the probability that the first marble drawn is red and the second marble drawn is blue?

A
B
C
D
Test Your Knowledge

Let A and B be two events defined on a common sample space, with P(A) = 0.40 and P(B) = 0.50. If events A and B are known to be mutually exclusive, which statement must be mathematically true?

A
B
C
D
Test Your Knowledge

A manufacturing facility uses two automated machines to assemble microchips. Machine A produces 60% of the total daily output, with a defect rate of 2%. Machine B produces the remaining 40% of daily output, with a defect rate of 5%. An inspection technician selects a randomly chosen microchip from the combined daily inventory and finds it to be defective. What is the probability that this defective microchip was assembled by Machine B?

A
B
C
D