datarekha

Exponential & Poisson

Two distributions that always travel together: the exponential times the wait until an event, the Poisson counts how many events land. Both lean on one number, lambda.

8 min read Intermediate GATE DA Lesson 12 of 122

What you'll learn

  • Exponential(lambda): density, CDF, mean = 1/lambda, variance = 1/lambda squared
  • The memoryless property: a used exponential clock is as good as new
  • Poisson(lambda) PMF, and its signature fact — mean equals variance equals lambda
  • Solving for lambda from a mean/variance condition (a real 2024 NAT)

Before you start

Stand at a bus stop. Buses come at random — sometimes two within a minute, sometimes a long quiet stretch. Two natural questions follow you around. How long until the next bus? That answer is a continuous waiting time — the exponential. How many buses arrive in the next hour? That answer is a count — the Poisson. Both questions share a single dial called lambda, the rate of events per unit time. Learn them together and a whole family of exam questions falls open — and the same pair models server-request arrivals, time-between-failures, and rare-event counts you will meet in real systems work.

Exponential(lambda)

A continuous random variable with density

λf(x) = λe−λx, x ≥ 0xwaiting time — most waits are short, a long tail of rare long ones
Density peaks at 0 and decays; the rate lambda sets how fast.
  • Density: f(x) = lambda · e^(−lambda·x) for x ≥ 0 (and 0 otherwise).
  • CDF: F(x) = 1 − e^(−lambda·x) — so P(X > x) = e^(−lambda·x).
  • Mean: E(X) = 1/lambda.
  • Variance: Var(X) = 1/lambda².

A bigger rate lambda means events come faster, so the average wait 1/lambda shrinks — exactly what you’d expect.

The memoryless property

The exponential forgets the past. If you’ve already waited s minutes, the chance of waiting at least t more is the same as if you’d just started:

P(X > s + t | X > s) = P(X > t)

A bus that hasn’t come in 10 minutes is no “more due” than a fresh one — the remaining wait has the same exponential distribution. This is the only continuous distribution with this property, and GATE leans on it constantly.

Poisson(lambda)

The discrete partner. If events occur at rate lambda per interval, the number X that land in one interval has PMF

P(X = k) = e^(−lambda) · lambda^k / k! ,   k = 0, 1, 2, …

Its signature fact, and a GATE favourite:

Poisson(λ)mean = var = λExponential(λ)mean 1/λ, var 1/λ²
Keep them straight: Poisson mean = variance; exponential variance is the square of its mean.
  • Mean: E(X) = lambda.
  • Variance: Var(X) = lambda — equal to the mean.

So a Poisson random variable has equal mean and variance (a true and frequently-tested fact, confirmed again in GATE DA 2024).

Open the Exponential tab below, drag the rate slider, and watch the curve steepen. Bracket a region (say 0 < X < 1) and the shaded area is P(X < 1) — exactly 1 − e^(−lambda), no integration needed. Try a small lambda (slow events, long waits) versus a large one (fast events, short waits) and see the mean 1/lambda track the shaded mass.

How GATE asks this

Most often a NAT. The classic move: give you a relationship between the mean and variance and ask you to solve for lambda, which forces you to know the formulas cold. Or supply a rate and ask for a single Poisson/exponential probability. MCQs test whether you can tell the two distributions’ formulas apart.

Worked example — a real 2024 question

Let X ~ Exponential(lambda). If 5 · E(X) = Var(X), find lambda.

This is an actual GATE DA 2024 problem. Substitute the two formulas and solve:

E(X)   = 1/lambda
Var(X) = 1/lambda^2

5 · E(X) = Var(X)
5 · (1/lambda) = 1/lambda^2
5/lambda      = 1/lambda^2

Multiply both sides by lambda^2:
5·lambda = 1
lambda   = 0.2

So lambda = 0.2. The whole question is just “do you know E(X) = 1/lambda and Var(X) = 1/lambda²?” — answer them confidently and it falls out in two lines.

Quick check

Quick check

0/6
Q1X ~ Exponential(lambda) with 5·E(X) = Var(X). Find lambda. (1 decimal — the real 2024 question)numerical answer — type a number
Q2A call centre receives calls as a Poisson process with mean 4 calls per minute. What is the variance of the number of calls in one minute?numerical answer — type a number
Q3X ~ Exponential(lambda) with mean 2. Compute P(X > 1). Use e^(-0.5) ≈ 0.6065. (3 decimals)numerical answer — type a number
Q4Which statements are TRUE? (select all that apply)select all that apply
Q5A Poisson process has lambda = 2 events per interval. P(X = 0) in one interval? Use e^(-2) ≈ 0.1353. (3 decimals)numerical answer — type a number
Q6For Exponential(lambda), which is the correct cumulative distribution function F(x) for x ≥ 0?

Practice this in an interview

All questions
When do you use the Poisson distribution versus the Binomial, and how do they relate?

Binomial 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.

When does each common distribution arise — Bernoulli, Binomial, Poisson, Normal, Exponential, Uniform?

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.

What is the memoryless property of the Exponential distribution, and why does it matter?

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.

How does the Bernoulli distribution relate to the Binomial, and what are their parameters and moments?

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.

Sign in to track your progress

Completed lessons, your XP, level, and streak save to your account — it's free and takes a few seconds.

Explore further

Related lessons

Skip to content