Unit 4: Discrete Probability Distributions

Table of Contents

Introduction

This unit covers the most common "named" discrete distributions. For each one, you should know its story (when to use it), its p.m.f., its parameters, its Mean (E[X]), its Variance (Var(X)), and its M.G.F.

4.1 Discrete Uniform Distribution

4.2 Bernoulli Distribution

4.3 Binomial Distribution

4.4 Poisson Distribution

Poisson Approximation to Binomial:

The Poisson distribution can be used as an approximation for the Binomial(n, p) distribution when:

  1. n is very large (e.g., n > 100)
  2. p is very small (e.g., p < 0.01)

In this case, we set λ = n * p. This is used because the Binomial C(n,x) formula becomes computationally difficult with large n.

4.5 Geometric Distribution

(Note: Some textbooks define X as the number of *failures* before the first success. The syllabus's companion, Negative Binomial, suggests this "number of trials" definition is the one to use.)

4.6 Negative Binomial Distribution

4.7 Hypergeometric Distribution

4.8 Summary Table & Relationships

Distribution Parameters P.M.F. p(x) Mean E[X] Variance Var(X)
Bernoulli p px(1-p)¹⁻ˣ p p(1-p)
Binomial n, p C(n, x) px(1-p)ⁿ⁻ˣ np np(1-p)
Poisson λ (e λx) / x! λ λ
Geometric p (1-p)x-1 p 1/p (1-p)/p²
Negative Binomial r, p C(x-1, r-1) pr(1-p)ˣ⁻ʳ r/p r(1-p)/p²
Hypergeometric N, K, n [C(K,x)C(N-K,n-x)]/C(N,n) n(K/N) n(K/N)(1-K/N)[(N-n)/(N-1)]