본문 바로가기
Statistics

Poisson approximation to Binomial distribution 이항분포의 포아송 근사

by jangpiano 2020. 7. 14.
반응형

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

 

graph using R

You can see that when n is large enough and p is close to 0, Bin(n,p) graph looks similar to POI(np)

 

반응형