I need to simulate Poisson wait times. I've found many examples of simulating the number of arrivals, but I need to simulate the wait time for one arrival, given an average wait time.

I keep finding code like this:

public int getPoisson(double lambda) 
{   
    double L = Math.exp(-lambda);   
    double p = 1.0;   
    int k = 0;   

    do 
    {    
        k++;     
        p *= rand.nextDouble(); 
        p *= Math.random(); 
    } while (p > L);   

    return k - 1; 
} 

but that is for number of arrivals, not arrival times.

Efficieny is preferred to accuracy, more because of power consumption than time. The language I am working in is Java, and it would be best if the algorithm only used methods available in the Random class, but this is not required.

Thank you for reading this, I've searched online but can only find simulations for number of arrivals. I wish I paid more attention in stats.

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

time between arrivals is exponential distribution, and you can generate a random variable X~exp(lamda) with the formula: -ln(U)/lamda (where U~Uniform[0,1]).
more info on generating exponential variable
note that time between arrival also matches time until first arrival, because exponential distribution is memoryless.

link|improve this answer
Thanks, but something isn't right; When I call this with 1/100, I get values of Infinity every time. The code is public static double waitingTime(double lambda) { return -Math.log(rand.nextDouble())/lambda; } Shouldn't it be valid to say that less than one arrival is expected per unit time? Or do I put in 1 and multiply by the expected wait time? – Alex Jun 29 '11 at 21:42
@Alex: I am only 99% sure, but I think in exponential distribution, lamda is number of occurences per time unit, if you have your average waiting time, you should set lamda=1/average waiting time, could that be the problem? – amit Jun 29 '11 at 21:43
1  
Nevermind, I always make this mistake. I called the method with 1/100 instead of 1.0/100.0 This answer works. Thank you so much, I've been reading stackoverflow for a long time, and this is my first time posting, and I'm amazed at how fast and accurate your answer was. – Alex Jun 29 '11 at 21:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.