How to Generate / Calculate the Value of Poisson and Normal Binomial Tables in Java

2

I'm doing a job in Java to calculate the statistical probabilities, I do not know how to generate the Poisson Binomial and Normal tables to proceed. For example:

X~Bi(5,0.05)

In this case X tends to a binomial, I would have to go to the Binomial Probabilities table to find where n is 5 and p 0.05 and X what you say. The problem is in generating the value of the Table.

    
asked by anonymous 07.05.2014 / 10:41

1 answer

1

The Apache Commons Math library provides mathematical and statistical implementations, including Poisson distribution .

Take a look at the documentation to see the possibilities of use:

07.05.2014 / 18:28