Understand the Poisson Distribution with Diagrams and Hand Calculations
An introductory course for building intuition about count data over a fixed interval, through λ, the probability mass function, mean = variance, and the sum of intervals. Short exercises for computing P(X = k), cumulative probabilities, and interval scaling by hand are placed in every chapter, and an in-browser simulator lets you watch how the shape changes.
Line up 5-minute "boxes" and look only at how many events fall into each box. How many land in each box is the main subject of the Poisson distribution.
What makes this course different
The five calculations that come up again and again
λ = rate × interval lengthP(X = k) = e^(−λ) λ^k / k!P(X ≤ k) = Σ_{i=0}^k P(X = i)E[X] = λ, Var(X) = λPoisson(λ₁) + Poisson(λ₂) = Poisson(λ₁ + λ₂)Chapter overview
P(X = k), the core of the Poisson distribution, starting from 0, 1, and 2 events.
3 Mean = variance — reading the shape and spread
5 questions. Read how λ determines both the center and the spread, through mean, variance, and standard deviation.
4 Interval scaling and sums — transforming λ across intervals
5 questions. Get a feel for how λ moves when you change the time window or add independent streams.
5 Simulator — explore PMFs interactively
5 questions. Drag λ and watch the bar-chart peak, spread, and cumulative probability change before your eyes.
6 Implementation — reading a minimal Poisson sampler
4 questions. Read a minimal implementation of pmf / cdf / sampler built without external libraries.
7 Comprehension check — comprehensive review and full-question audit
9 questions. A mixed-review case plus simulator readouts and minimal-implementation reading exercises tie all chapters together.
Tips for studying
- Read the body text and then solve the exercise right below it.
- Three decimal places is plenty for probabilities. Write at least one intermediate step on paper before typing the answer.
- Do both the simulator in Chapter 5 and the mixed review in Chapter 7.
Prerequisites
A high-school feel for exponentials, square roots, and factorials is enough. We do not go into calculus or the rigorous derivations of stochastic processes. The goal, first of all, is to be able to read counts over a fixed interval.