How to generate / calculate the value of Binomial Poisson and Normal tables in Java

I'm doing some work in Java to calculate the statistical probabilities, I don't know is how to generate the Binomial and Normal Poisson 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 probability table to look for where n is 5 and p 0.05 and X whatever the user says. The problem is in generating the table value.

Author: brasofilo, 2014-05-07

1 answers

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

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

 1
Author: utluiz, 2014-05-07 16:28:38