Tagged Questions

7
votes
4answers
8k views

Algorithm to generate Poisson and binomial random numbers?

i've been looking around, but i'm not sure how to do it. i've found this page which, in the last paragraph, says: A simple generator for random numbers taken from a Poisson distribution is obtained ...
4
votes
5answers
438 views

generating poisson variables in c++

I implemented this function to generate a poisson random variable typedef long unsigned int luint; luint poisson(luint lambda) { double L = exp(-double(lambda)); luint k = 0; double p = ...
0
votes
1answer
81 views

how would I implement the following probability in a programming language, for example Java

Suppose that you have 10 stations that are sending packets at a given time let's assume that the time is obtained from a counter, so for example we can have counter = 1,2,3,... if counter=1 then ...