Poisson approximation to the Binomial distribution
The Binomial distribution consists of two-parameter which is n and p.
n: the number of independent trials
p: the probability of getting success.
When 'n' in Bin(n,p) is large enough and p is close to 0, binomial distribution converges to poisson distribution.
Binomial Distribution
when X follows binomial distribution, X~Bin(n,p)
X: the number of success
So binomial distribution is discrete distribution because it deals with the discrete numbers. (number of success should be like 0,1,2,3,..)
Poisson Distribution
When X has poisson distribution,X~POI(λ)
X : the number of event occurrences in a fixed time period.
So poisson distribution is discrete distribution because random variables should be discrete numbers.
Conditions for Poisson Approximation to Binomial
n is large enough (n> 100)
p is very close to 0 (p< 0.01)
Then Bin(n,p) is approximately the same with POI(np)
That is, np can approximate λ
Example of Poisson Approximation to Binomial
Poisson approximation to Binomial is useful when n is large enough and p is very close to 0 because it is conflict to compute binomial distribution.
For example, when X~BIN(100000, 0.00007)
It seems conflict to find P(X=x).
For this case, we use Poisso Approximation.
Graph(Using R) - Poisson Approximation
You can see that when n is large enough and p is close to 0, Bin(n,p) graph looks similar to POI(np)
'Statistics' 카테고리의 다른 글
Relationship between Exponential and Poisson distribution 지수분포와 포아송 분포의 관계 (0) | 2020.07.14 |
---|---|
Memoryless Property of exponential and geometric distribution 지수분포와 기하분포의 무기억성 (0) | 2020.07.14 |
Relationship between Exponential and Gamma distribution 지수분포 감마분포 관계 (0) | 2020.07.14 |
Relationship between Negative Binomial and Geometric distribution 음이항분포 기하분포 (0) | 2020.07.14 |
Bayes Theorem 베이즈 정리 (0) | 2020.07.14 |