Lect - 09 D Poisson Distribution
Lect - 09 D Poisson Distribution
EEF 271e
Ibraheem Shayea
Electronics and Communication Engineering Department,
Faculty of Electrical and Electronics Engineering
İstanbul Teknik Üniversitesi - İTÜ
Syllabus 09
❑ Understanding :
o Concept of Poisson distribution
o PMF of Poisson distribution Function
o CDF of Poisson distribution Function
o Mean
o Median
o Variance
o Standard Deviation
o Practice some Examples
Outline
6
Concept of Poisson distribution
Definition
7
Concept of Poisson Distribution
Probability of Each Trial
8
Concept of Poisson Distribution
Application
9
Concept of Poisson Distribution
Application
10
Concept of Poisson Distribution
Applications
Examples
Some key examples of Poisson Distribution:
o Number of customer calls received by a call centre per hour.
o Emails received by a person in an hour.
o Faults in a manufacturing process per meter of fabric.
o Patients arriving at an emergency room per night.
o Typos per page in a printed book.
These are all events that occur independently and randomly over a fixed interval.
PMF of Poisson Distribution
PMF of Poisson Distribution
PMF for Poisson Distribution
Probability Mass Function (PMF) of the Poisson Distribution gives
the probability of observing exactly 𝒙 events in a fixed interval, with a
known average rate λ (mean number of events per interval).The PMF is:
𝝀𝒙 𝒆 −𝝀
𝒑 𝒙, 𝝀 =
𝒙!
where
o 𝒑 𝒙, 𝝀 the PMF for Poisson Distribution
o 𝒙 the number of events (0, 1, 2, … )
o 𝝀 the average rate of occurrence (mean)
o e the Euler's number (≈2.718)
PMF of Poisson Distribution
PMF of Poisson Distribution
Fig. illustrates the PMF of Poisson Distribution with different 𝝀 values.
y = poisspdf(x, lambda);
Example
clc
clear all
close all
lambda = 0.5;
x = (0:10);
y = poisspdf(x, lambda);
CDF of Poisson Distribution
CDF of Poisson Distribution
CDF for Poisson Distribution
The CDF of the Poisson distribution gives the probability that the
number of events is less than or equal to a given value, based on a fixed average
rate.
𝑭(𝒙) = 𝑷(𝑿 ≤ 𝒙)
CDF is derived from PMF
𝐹(𝑥) = 𝑝𝑋 𝑥
𝑥=−∞
∞ ∞
𝝀𝒙 𝒆 −𝝀
𝑭(𝒙) = 𝑷(𝑿 ≤ 𝒙) = 𝒑 𝒙, 𝝀 =
𝒙!
𝑥= 0 𝑥=0
where
o 𝐩 𝐱, 𝛌 the PMF for Poisson Distribution
o 𝒙 the number of events (0, 1, 2, …)
o 𝝀 the average rate of occurrence (mean)
o e the Euler's number (≈2.718)m
CDF of Poisson Distribution
Matlab function for CDF of Poisson Distribution
F = poisscdf(x, lambda);
where
o 𝑥 the number of events (0, 1, 2, …)
𝑀𝑒𝑎𝑛 = 𝐸 𝑋 = 𝑥 𝑝𝑋 𝑥
𝑥=−∞
𝑀𝑒𝑎𝑛 = 𝐸 𝑋 = 𝝁𝑿 = 𝜆
where
𝜆 lambda, the average rate of occurrence (events per interval).
So, in a Poisson Distribution, the mean and the parameter λ are the same.
Variance of Poisson Distribution
Variance
Variance
The variance of a r.v. X, denoted by 𝜎𝑋2 or 𝑉𝑎𝑟(𝑋),is defined by:
Thus
𝜆𝑥 𝑒 −𝜆
𝑝 𝑥, 𝜆 =
𝑥!
where
o 𝒑 𝒙, 𝝀 the PMF for Poisson Distribution
o 𝒙 the number of events (0, 1, 2, …)
o 𝝀 the average rate of occurrence (mean)
o e the Euler's number (≈2.718)
Variance
Variance for Poisson Distribution
❖ The PMF for Poisson Distribution is defined as follows:
𝜆𝑥 𝑒 −𝜆
𝑝 𝑥, 𝜆 =
𝑥!
𝜎𝑋2 = 𝑥𝑘 − 𝜇𝑥 2 𝑝𝑋 𝑥𝑘
𝑘=0
𝑛
𝜆𝑥 𝑒 −𝜆
𝜎𝑋2 = 𝑥𝑘 − 𝜇𝑥 2
𝑥!
𝑘=0 26
Variance
Variance for Poisson Distribution
𝜎𝑋2 = 𝑉𝑎𝑟(𝑋) = 𝜆
where
𝜆 lambda, the average rate of occurrence (events per interval).
𝝈𝑿 = 𝝈𝟐𝑿 = 𝝀
where
𝜆 lambda, the average rate of occurrence (events per interval).
29
The End
Thank You