Exponential & Poisson
Back at the bus stop: how long until the next bus, and how many arrive in an hour? One is a waiting time, the other a count, and a single rate λ governs both. The exponential's strange 'no more due now than a minute ago' property answers the question the last lesson left open.
What you'll learn
- Exponential(λ): density, CDF, mean = 1/λ, variance = 1/λ²
- The memoryless property: a used exponential clock is as good as new
- Poisson(λ) PMF, and its signature — mean equals variance equals λ
- Solving for λ from a mean/variance condition (a real 2024 NAT)
Before you start
Back to the bus stop the last lesson left us at. Buses come at random — sometimes two
within a minute, sometimes a long empty stretch. Two natural questions hang in the
air. How long until the next bus? That answer is a continuous waiting time. How
many buses arrive in the next hour? That answer is a whole-number count. Remarkably,
one single dial governs both — a rate of events per unit time, written λ — so we
learn the two together.
The waiting time
The time you wait for the next event is the exponential distribution. Its density slopes down from the start — short waits are common, long ones rare, with a thin tail trailing off — exactly the shape the last lesson predicted for a waiting time.
- Density:
f(x) = λ·e^(−λx)forx ≥ 0. - CDF:
F(x) = 1 − e^(−λx), so the chance of still waiting pastxisP(X > x) = e^(−λx). - Mean:
E(X) = 1/λ— a faster rateλmeans a shorter average wait, just as you would expect. - Variance:
Var(X) = 1/λ².
The strange property the bus has
Here is the “no more due now” idea the last lesson dangled. The exponential forgets
the past. If you have already waited s minutes, the chance of waiting at least t
more is exactly the chance a fresh arrival waits t — your ten minutes of standing
there bought you nothing:
P(X > s + t | X > s) = P(X > t)
A bus that has not come in ten minutes is no more “due” than one you just started
waiting for. The exponential is the only continuous distribution with this
memorylessness, and GATE leans on it constantly. Open the Exponential tab below, drag
the rate λ, and watch the curve steepen as faster events shorten the wait.
Drag the handles to read off a probability
The count
Now the other question — how many events land in one interval. That count is the
Poisson distribution, the exponential’s discrete partner, sharing the same rate
λ:
P(X = k) = e^(−λ) · λ^k / k! , k = 0, 1, 2, …
Its signature fact, and a GATE favourite, is that its two summary numbers are equal:
For a Poisson, both the mean and the variance equal λ — a true fact, tested
again in GATE DA 2024.
A worked example — a real 2024 question
Let
XbeExponential(λ). If5·E(X) = Var(X), findλ.
Substitute the two formulas and the rest is algebra:
E(X) = 1/λ, Var(X) = 1/λ²
5 · E(X) = Var(X)
5 · (1/λ) = 1/λ²
5/λ = 1/λ²
multiply both sides by λ²:
5λ = 1 ⟹ λ = 0.2
So λ = 0.2. The whole question was really “do you know E(X) = 1/λ and Var(X) = 1/λ²?” — answer that and it falls out in two lines.
A question to carry forward
The exponential and Poisson are the shapes of random arrivals. But the most famous continuous shape of all is none of these — it appears whenever many small, independent effects pile up: heights, measurement errors, the average of a big sample. Here is the thread onward: what is that bell-shaped distribution, and why does looking things up in it always start by “standardising” a value first?
In one breath
- One rate
λgoverns both: exponential = continuous waiting time to the next event; Poisson = discrete count of events in an interval. - Exponential(λ):
f = λe^(−λx),F = 1 − e^(−λx),P(X>x) = e^(−λx); mean1/λ, variance1/λ²; the unique memoryless distribution. - Poisson(λ):
P(X=k) = e^(−λ)·λ^k/k!; mean = variance = λ (the signature fact). - The reliable NAT: solve for
λfrom a mean/variance relation — 2024:5·E(X)=Var(X)→5/λ = 1/λ²→λ = 0.2. - Do not swap: exponential variance
1/λ²(square of the mean); Poisson variance equals the mean.
Practice
Quick check
Practice this in an interview
All questionsBinomial counts successes in a fixed number of independent trials with a fixed success probability. Poisson counts events in a continuous interval when events are rare and arrive independently at a constant average rate. Poisson is the limiting case of Binomial as n → ∞ and p → 0 with np = λ fixed.
Each distribution has a natural generative story: Bernoulli is a single coin flip; Binomial sums Bernoullis; Poisson counts rare arrivals; Normal emerges from sums of many small effects; Exponential models waiting times between Poisson events; Uniform assigns equal probability across a range. Choosing correctly comes from matching that story to the data-generating process.
An Exponential random variable satisfies P(X > s+t | X > s) = P(X > t): the remaining waiting time has the same distribution regardless of how long you have already waited. This is the only continuous distribution with this property, and it directly corresponds to a constant hazard rate — neither ageing nor improving over time.
A Bernoulli(p) trial is the atomic unit: a single experiment with success probability p. Binomial(n, p) is the sum of n independent, identically distributed Bernoulli(p) trials, counting total successes. Because Binomial is a sum of independent random variables, its mean and variance are n times those of a single Bernoulli.