Probability distributions — binomial, Poisson, normal comparison

hard CBSE JEE-MAIN 4 min read

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

FeatureBinomialPoissonNormal
TypeDiscreteDiscreteContinuous
Parametersnn (trials), pp (probability)λ\lambda (mean rate)μ\mu (mean), σ\sigma (std dev)
Use whenFixed trials, two outcomesRare events, large nn, small ppLarge samples, symmetric data
FormulaP(X=r)=(nr)prqnrP(X=r) = \binom{n}{r}p^r q^{n-r}P(X=r)=eλλrr!P(X=r) = \frac{e^{-\lambda}\lambda^r}{r!}f(x)=1σ2πe(xμ)22σ2f(x) = \frac{1}{\sigma\sqrt{2\pi}}e^{-\frac{(x-\mu)^2}{2\sigma^2}}
Meannpnpλ\lambdaμ\mu
Variancenpqnpqλ\lambdaσ2\sigma^2

Use Binomial when:

  • There are a fixed number of trials nn
  • Each trial has exactly two outcomes (success/failure)
  • Probability pp is constant across trials
  • Trials are independent

Example: A coin is tossed 10 times. Find P(exactly 3 heads)P(\text{exactly 3 heads}).

P(X=3)=(103)(0.5)3(0.5)7=120×11024=0.1172P(X = 3) = \binom{10}{3}(0.5)^3(0.5)^7 = 120 \times \frac{1}{1024} = \mathbf{0.1172}

Use Poisson when:

  • Events occur randomly in a given interval (time, area, volume)
  • The average rate λ\lambda is known
  • Events are independent and nn is large, pp is small

Example: A call centre receives 4 calls per hour on average. Find P(exactly 6 calls in an hour)P(\text{exactly 6 calls in an hour}).

P(X=6)=e4466!=0.01832×4096720=0.1042P(X = 6) = \frac{e^{-4} \cdot 4^6}{6!} = \frac{0.01832 \times 4096}{720} = \mathbf{0.1042}

Use Normal when:

  • Data is continuous and symmetric about the mean
  • You are dealing with large samples (Central Limit Theorem applies)
  • The problem gives μ\mu and σ\sigma (or asks for areas under the curve)

Convert to standard normal: Z=XμσZ = \frac{X - \mu}{\sigma}, 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 nn is large and pp is small, binomial approaches Poisson (with λ=np\lambda = np). When nn is large enough that np5np \geq 5 and nq5nq \geq 5, binomial approaches normal (with μ=np\mu = np, σ=npq\sigma = \sqrt{npq}).


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 n20n \geq 20 AND p0.05p \leq 0.05 (roughly). If n=10n = 10 and p=0.3p = 0.3, using Poisson gives a poor approximation. Stick with exact Binomial when nn is small or pp is not near zero.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next