Mathematics · core

Classical Distributions

Bernoulli, Binomial, Poisson, Normal, and Exponential — when each models the world and what to expect from them.

mathematicsprobability

Mental model

Distributions are reusable uncertainty templates. Bernoulli/Binomial for yes/no counts; Poisson for rare events in fixed windows; Normal for sums of many small pieces (CLT); Exponential for waiting times between events.

How to study Classical Distributions

Begin by restating the mental model in your own words, then connect it to a concrete system you have built or operated. Name the mechanism, the constraint it addresses, and the trade-off it introduces. Use Seeing Theory — Probability Distributions, Khan Academy — Random variables & distributions, MIT 18.05 — Probability & Statistics (Spring 2022) to check details, but close the source before writing your explanation. Retrieval is the learning step; rereading is only preparation.

Next, compare Classical Distributions with Sampling & the Central Limit Theorem, Maximum Likelihood Estimation, Sampling & Decoding. Ask what changes in correctness, latency, resource use, operability, and failure recovery. Complete Match distribution to scenario and preserve the command, input, output, and one failed attempt as evidence. Finish by explaining the idea without jargon to someone who has not studied the track.

Proof of understanding

  • Explain the mechanism from first principles and identify the state it reads or changes.
  • Give one situation where the concept is the right choice and one where it is not.
  • Predict a realistic failure mode before running the drill, then compare the prediction with evidence.
  • Connect the result to a roadmap or build artifact instead of treating the concept as isolated trivia.

Where it matters

Queue depth modeling, click-through rates, error counts, latency approximations.

Common mistakes

  • Using a Normal model on tiny counts or heavy tails
  • Confusing Poisson rate λ with probability
  • Applying Binomial when trials are not independent

Learn from primary sources

Practice and explain it back

Match distribution to scenario

For each scenario, name the best distribution: (1) 10,000 coin flips, count heads. (2) Rare server crashes, ~2 per day. (3) Time until next request in a Poisson stream. (4) Average of 500 independent user latencies.

Expected evidence: (1) Binomial (≈Normal for large n). (2) Poisson. (3) Exponential. (4) Normal for the sample mean (CLT).

Open the interactive drill →

Review prompts

  • When use Poisson instead of Binomial?
  • When is a Normal approximation reasonable for a Binomial?

Build evidence

Use a roadmap capstone to turn this concept into working evidence.

Prerequisites

Related concepts

Learning paths