Question
When do we use binomial distribution vs Poisson vs normal distribution? Compare their properties and show how to pick the right one for a given problem.
(CBSE 12 + JEE Main — conceptual + numerical)
Solution — Step by Step
| Feature | Binomial | Poisson | Normal |
|---|---|---|---|
| Type | Discrete | Discrete | Continuous |
| Parameters | (trials), (probability) | (mean rate) | (mean), (std dev) |
| Use when | Fixed trials, two outcomes | Rare events, large , small | Large samples, symmetric data |
| Formula | |||
| Mean | |||
| Variance |
Use Binomial when:
- There are a fixed number of trials
- Each trial has exactly two outcomes (success/failure)
- Probability is constant across trials
- Trials are independent
Example: A coin is tossed 10 times. Find .
Use Poisson when:
- Events occur randomly in a given interval (time, area, volume)
- The average rate is known
- Events are independent and is large, is small
Example: A call centre receives 4 calls per hour on average. Find .
Use Normal when:
- Data is continuous and symmetric about the mean
- You are dealing with large samples (Central Limit Theorem applies)
- The problem gives and (or asks for areas under the curve)
Convert to standard normal: , then use the Z-table.
flowchart TD
A["Given a probability problem"] --> B{"Is the variable discrete or continuous?"}
B -- Continuous --> C["Use Normal Distribution"]
B -- Discrete --> D{"Fixed number of trials n?"}
D -- Yes --> E{"Is p constant and trials independent?"}
E -- Yes --> F["Use Binomial Distribution"]
D -- No --> G{"Events per interval with known rate λ?"}
G -- Yes --> H["Use Poisson Distribution"]
F --> I{"Is n large and p small?"}
I -- Yes --> J["Poisson can approximate Binomial"]
F --> K{"Is np ≥ 5 and nq ≥ 5?"}
K -- Yes --> L["Normal can approximate Binomial"]
Why This Works
These three distributions model different physical situations. Binomial counts successes in a fixed number of independent trials. Poisson counts random events in a continuous interval. Normal describes the bell-curve shape that arises whenever many small independent effects add up (Central Limit Theorem).
The approximations connect them: when is large and is small, binomial approaches Poisson (with ). When is large enough that and , binomial approaches normal (with , ).
Alternative Method
For JEE Main, most problems are Binomial. The quick check: if the question says “n trials” or “n times” with a success probability, it is Binomial. If it says “on average, X events per unit time,” it is Poisson. If it gives mean and standard deviation of a large population, it is Normal.
Common Mistake
Students mix up the conditions for Poisson approximation to Binomial. It requires AND (roughly). If and , using Poisson gives a poor approximation. Stick with exact Binomial when is small or is not near zero.