I know this is probably a simple question but honestly I've been struggling with it for a couple of days already.
I have $N$ independent events. Each of them can occur with equal probabilities in any of $n$ timesteps. I want to compute the probability of $l$ events to happen together. I find two expressions and I am not sure which one is the right one.
FIRST EXPRESSION:
The probability of the event $i$ happening in the time $t_j$ is $\frac{1}{n}$
The probability of the event $h$ happening in the time $t_j$ is $\frac{1}{n}$
...
The the proba of any event happening at time $t_j$ is $\sum^{N} \frac{1}{n} = \frac{N}{n}$
Then, the probability of second event happening at $t_j$ would be $\sum^{N-1} \frac{1}{n} = \frac{N-1}{n}$, because there are only $N-1$ events available. And then,
the probability of two events happening at time $t_{j}$ is $ \frac{N}{n} \frac{N-1}{n}$
Following the same reasoning for $l$ events occurring together at time $t_{j}$:
the probability of $l$ events occurring at time $t_j$: $ \frac{N}{n} \frac{N-1}{n} \dots \frac{N-(l-1)}{n}$
But I want to know the probability of events occurring at the same time, not only at $t_j$ but at any any $t_i$ in $n$,
the probability of $l$ events cooccurring at any time is: $ \frac{N}{n} \frac{N-1}{n} \dots \frac{N-(l-1)}{n} \times n = \frac{N!}{(N-l)! n^{l-1}}$
SECOND EXRPESSION:
The probability of the event $i$ happening in the time $t_j$ is $\frac{1}{n}$
The probability of the event $h$ happening in the time $t_j$ is $\frac{1}{n}$
...
Then, the probability of $l$ specific events to happen at time $t_{j}$ is $\frac{1}{n} \dots \frac{1}{n}$ ($l$ times).
And since this could be for any of the $n$ timesteps,
the probability of this $l$ events to happen at any time is $\frac{1}{n^l}n = \frac{1}{n^{l-1}}$
But here we considered only one specific set of $l$ events, to have all the possible ways to take $l$ from $N$ where the order is meaningless, we can compute the combination $\binom{N}{l}$.
And we get: $\frac{1}{n^{l-1}} \binom{N}{l} $
QUESTION:
We see that both expressions actually are "similar". They differ in a $\frac{1}{l!}$ factor. I guess this is usually a matter of considering the events undistinguishable or not... but honestly, not sure which one is correct in this case.
Another not non-important issue, but that I can only solve after solving problem 1 is about normalization but I will ask that when i solve this one.
(n-1)/nis the proba of one event happening at any other than than tj, and for N events will be that to the power ofN. I am still tempted though, to multiply this bynto make it the probability of any event happening at any time (which should be identically 1). But that does not work. – myradio Feb 27 '18 at 10:00