Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Numerical algorithm to generate numbers from Binomial distribution

Tags:

c#

random

I need to generate random numbers from Binomial(n, p) distribution.

A Binomial(n, p) random variable is sum of n uniform variables which take 1 with probability p. In pseudo code, x=0; for(i=0; I<n; ++I) x+=(rand()<p?1:0); will generate a Binomial(n, p).

I need to generate this for small as well as really large n, for example n = 10^6 and p=0.02. Is there any fast numerical algorithm to generate it?

EDIT -

Right now this is what I have as approximation (along with functions for exact Poisson and Normal distribution)-

    public long Binomial(long n, double p) {
        // As of now it is an approximation
        if (n < 1000) {
            long result = 0;
            for (int i=0; i<n; ++i)
                if (random.NextDouble() < p) result++;
            return result;
        }
        if (n * p < 10) return Poisson(n * p);
        else if (n * (1 - p) < 10) return n - Poisson(n * p);
        else {
            long v = (long)(0.5 + nextNormal(n * p, Math.Sqrt(n * p * (1 - p))));
            if (v < 0) v = 0;
            else if (v > n) v = n;
            return v;
        }
    }
like image 386
KalEl Avatar asked Nov 13 '09 11:11

KalEl


2 Answers

Another option would be to sample from Normal or Poisson as you do and then add a Metropolis-Hastings step to accept or reject your sample. If you accept you are done, if you reject, you have to completely resample again. My guess is that because the approximation is so close, you will almost always get an accept step, once in a while you might reject.

Also Luc Devroye's book has some great algorithms for Binomial sampling.

PS If you end up with a good algorithm; would you mind sharing it at Math.Net Numerics?

like image 158
Jurgen Avatar answered Oct 20 '22 13:10

Jurgen


If you are willing to pay, then take a look at NMath by Centerspace.

Otherwise, the C code used by the Stats program R is here, and should be straightforward to port to C#.

EDIT: There are details (inc. code) on creating a method for this on p178 of Practical Numerical Methods with C# by Jack Xu.

ANOTHER EDIT: A free C# library that does what you want.

like image 28
Richie Cotton Avatar answered Oct 20 '22 11:10

Richie Cotton