Learn
Interactive·

Discrete Distributions: Bernoulli, Binomial & Poisson

A yes-or-no outcome, a success count, and an event count require different discrete models.

Whether one customer purchases is a success-or-failure outcome. The number of purchasers among 100 customers is a success count. The number of support requests in one hour is an event count.

All three involve counts, but the data-generating structures differ.

Key question

Is the variable one binary outcome, a fixed number of repeated successes, or a count within time or space?

1

Concept

How are the three distributions connected?

Bernoulli is the smallest building block

Bernoulli

One success-or-failure trial

X ∈ {0,1}

Binomial

Number of successes in n independent trials

X ∈ {0,…,n}

Poisson

Number of events in a fixed interval

X ∈ {0,1,2,…}

Repeating independent Bernoulli trials n times with the same success probability produces a binomial count. A Poisson variable counts events within an interval under a stable average rate.

2

Why It Matters

When do Bernoulli and binomial models apply?

The binomial model depends on four conditions

  • The number of trials n is fixed.
  • Each trial has two outcomes.
  • The success probability p is constant.
  • Trials are independent.
DistributionMeanVariance
Bernoulli(p)pp(1−p)
Binomial(n,p)npnp(1−p)

Binomial example

The number of purchasers among 50 people exposed to an advertisement

3

How It Works

What situations does the Poisson model describe?

A Poisson distribution is determined by the rate λ

A Poisson model describes how many events occur in a fixed interval of time or space. λ is the expected number of events in that interval.

ExampleIntervalEvent
Call centerone hourincoming requests
Serverone dayerrors
Roadone kilometreaccidents

A defining feature

The Poisson mean and variance are both λ. If the observed variance is much larger, overdispersion may be present.

4

Example

How should a distribution be chosen?

Choose the model from the data-generating process

QuestionDistribution
Did one trial succeed?Bernoulli
How many successes in 100 trials?Binomial
How many events occurred in one hour?Poisson

Poisson approximation to the binomial

When n is large and p is small, a binomial distribution can be approximated by Poisson with λ=np.

5

Interactive

Change the shapes of binomial and Poisson distributions

Change the shapes of binomial and Poisson distributions

Adjust n, p, and λ to see how the center and spread change.

0
1
2
3
4
5
6
7
8
9
10

Mean

3.00

Variance

2.10

Key lesson

A distribution’s shape reflects the rule that generates the data, not merely a visual pattern.

Key takeaways

  • Bernoulli models one success-or-failure trial.
  • Binomial models the number of successes in n independent trials.
  • Poisson models event counts in a fixed interval.
  • The binomial mean is np and variance is np(1−p).
  • The Poisson mean and variance are both λ.
  • Distribution choice begins with the data-generating structure.

Go Deeper

Continuous Distributions