Andromeda
Note

Bayes' Theorem

Definition

Bayes’ Theorem is a mathematical formula for determining conditional probability. It describes the probability of an event based on prior knowledge of conditions that might be related to the event: P(AB)=P(BA)P(A)P(B)P(A|B) = \frac{P(B|A)P(A)}{P(B)}

  • How to read: “The probability of A given B equals the probability of B given A times the probability of A, all over the probability of B.”
  • Meaning: Update your belief in AA after observing evidence BB by scaling the prior P(A)P(A) with how likely BB is when AA is true, then normalizing by total probability of BB.

Why It Matters

It is the mathematical law of learning, providing the only rational way to update our beliefs when we see new evidence. In an uncertain world, Bayesian reasoning is the essential tool for maintaining an accurate view of reality.

Core Concepts

  • Prior Probability P(A)P(A): Initial degree of belief.
    • How to read: “The probability of A.”
    • Meaning: What you believed before seeing evidence BB—the starting point.
  • Likelihood P(BA)P(B|A): The probability of the evidence given the hypothesis.
    • How to read: “The probability of B given A.”
    • Meaning: How well hypothesis AA predicts or explains the evidence.
  • Posterior Probability P(AB)P(A|B): The updated belief after observing new evidence.
    • How to read: “The probability of A given B.”
    • Meaning: Your revised belief after incorporating evidence BB.
  • Evidence P(B)P(B): The total probability of the evidence.
    • How to read: “The probability of B.”
    • Meaning: Normalizing denominator—how likely the evidence is overall, across all hypotheses.

Connected Concepts