You are on page 1of 1

Math 340 - Probability & Statistics

A few special distributions

Name Probability mass / Density E[X] V ar(X) Usage


Bernoulli(p) P (X = 1) = p, P (X = 0) = 1 − p p p(1 − p) Returns 1 if the trial (such as a coin toss) is a success.
Eg: X=1 if a fair coin lands H with p = 1/2
( )
n k
Binomial(n,p) P (X = k) = p (1 − p)n−k np np(1 − p) Counts the number of successes in n Bernoulli trials.
k
Eg: number of 6 in 20 die throws is Bin(20, 1/6)
1 1−p
Geometric(p) P (X = k) = p(1 − p)k−1 Counts number of Bernoulli trials until the first success.
p p2
Eg: number of trials until a die lands on 5 first is Geom(1/6)
( )
k−1 r r r(1 − p)
Neg Binomial(r,p) P (X = k) = p (1 − p)k−r Counts number of Bernoulli trials until r successes.
r−1 p p2
Eg: number of trials until a coin lands on H 10 times is NBin(10,1/2)
λk
Poisson(λ) P (X = k) = e−λ λ λ Counts number of rare events. Estimates Bin(n,p) with Pois(np).
k!
Eg: Finds number of misprints on a page, given the average λ.
{
1
b−a ,a≤x≤b a+b (b − a)2
Uniform(a,b) f (x) = Picks a value in the interval [a, b].
0 , otherwise 2 12
Eg: Pick a random number in (1, 5)
1 (x−µ)2
Normal(µ, σ 2 ) f (x) = √ e− 2σ2 µ σ2 Describes rv’s whose values cluster around the mean.
2πσ
Eg: Used to estimate sums of iid by normalizing and using CLT.
{
−λx
λe ,x≥0 1 1
Exponential(λ) f (x) = Describes time between (rare) events. Memoryless.
0 , otherwise λ λ2
Eg: lifetime of components, time between earthquakes.

You might also like