
Patrick B. answered 01/04/21
Math and computer tutor/teacher
So you are asked to generate 36000 trials of the Poisson with mean lambda=1/6
I do not have nor am familiar with the software you are using...
In excel , it is =Poisson.Dist(x,meanLamdna,true),
and x=rand() is a random value between 0 and 1
------------------------------------------------------------------------------------------------------
Your other option is to evaluate the Poisson function: lambda^k * exp(lambda) / k!
In your case, lambda=1/6 and k=1 second, so the function is:
y= (1/6)*exp(1/6) = e^(1/6)/6 < 0.197
You then generate a random value between 0 and 1 can compare it to the function value y...
Repeats this calculation 36000 times
Mai A.
how can I compute the interval times between the arrival of each two successive packets01/05/21