I have a random events generator. I know in advance the set of event that can be generated (in my case I have only three possible events). The probabilities of the events are not known. I need to estimate these probabilities. For that I run an experiment. For example I generate 20 events. So, I have a sequence of events. For example: a,a,b,a,c,c,c,a,b,....c
. Having the sequence I can count for the number of every event (so, in my case I get three integer numbers $n_1$, $n_2$ and $n_3$).
I can calculate the probabilities of every event in the following way:
$\nu_1 = \frac{n_1}{n_1+n_2+n_3}$ $\nu_2 = \frac{n_2}{n_1+n_2+n_3}$ $\nu_3 = \frac{n_3}{n_1+n_2+n_3}$
But these values are approximate. For example, I can have probability of 0.25 for the event a
, so if I generate 20 events, I have to get approximately 5 a
-events. But just by chance I can get 10 or 0 a
-events.
So, I want to have a density distribution of probabilities. Since, $\nu_1$, $\nu_2$ and $\nu_3$ are dependent (the sum of them is equal to one) I going to use $\nu_1$ and $\nu_2$. So, I want to have an explicit form for the density distribution of $\nu_1$ and $\nu_2$.
$\rho (\nu_1,\nu_2) = F (n_1,n_2,n_3)$.
Does anybody know where I can get it?