← back to statistics

Probability

OpenIntro Statistics · Ch. 3 · openintro.org/book/os

Probability quantifies uncertainty. The rules are simple: probabilities are between 0 and 1, they add up for disjoint events, and conditional probability lets you update beliefs with new evidence. Bayes' theorem ties it all together.

Probability rules

For any event A: 0 ≤ P(A) ≤ 1. For disjoint events: P(A or B) = P(A) + P(B). For non-disjoint events: P(A or B) = P(A) + P(B) - P(A and B). The complement rule: P(not A) = 1 - P(A).

S A B A∩B P(A ∪ B) = P(A) + P(B) - P(A ∩ B)
Scheme

Conditional probability

P(A | B) = P(A and B) / P(B). The probability of A, given that B happened. This is how we update probabilities with evidence.

Scheme

Independence

Events A and B are independent if P(A | B) = P(A), equivalently P(A and B) = P(A) * P(B). Coin flips are independent. Test results from the same patient are not.

Scheme
Neighbors

Related chapters

Foundations (Wikipedia)

Translation notes

OpenIntro introduces probability with contingency tables and tree diagrams. We focus on the computational rules. The Bayes' theorem example (disease screening) is a standard illustration of base rate neglect. The original also covers probability trees and more complex multi-step scenarios. For rigorous probability axioms, see 🎰 Grinstead Ch. 1.

Want the full treatment? Read OpenIntro Statistics, Ch. 3.