It is given that $4$ Poisson events occur between $12:00$ to $13:00 $ (interval denoted by T).
Intuitively, Why the probability of each event to occur at time $t \in T$ is uniform across $T$?
I'm well aware of the calculation for that:
Let's calculate the probability of $3$ (out of $ 4$) events to occur between $12:30$ to $13:00$ ($\frac{1}{2}$ an hour).
Let the following random variables:
- $X$ - the $4 $ events from $12:00$ to $13:00$.
- $X_1$ - the single event that has happened between $12:00 $ to $ 12:30$ .
- $X_2$ - the 3 events which happened between $12:30$ to $13:00$.
So their distributions are: $$ \begin{align*} & X \sim Poi(\lambda \cdot t) = Poi(4 \cdot 1) = Poi(4) \\ & X_1, X_2 \sim Poi(4 \cdot \frac{1}{2}) = Poi(2) \end{align*} $$
Given that a total of 4 events occurred at $T$, then:
$$ \begin{align*} P(X_2 = 3 \,|\, X = 4) &= \\ & = \frac{P(X_2 = 3 \cap X = 4)}{P(X = 4)} \\ & = \frac{P(X_2 = 3 \cap (X_1 = 1 \cup X_2 = 3))}{P(X = 4)} \\ & = \frac{P(X_2 = 3 \cap X_1 = 1)}{P(X = 4)} \\ & = \frac{P(X_2 = 3) \cdot P(X_1 = 1)}{P(X = 4)} \\ & = \frac{\frac{e^{-2} \cdot 2^3}{3!} \cdot \frac{e^{-2} \cdot 2^1}{1!}}{\frac{e^{-4} \cdot 4^4}{4!}} \\ & = \frac{4!}{3! 1!} \cdot \left(\frac{2}{4}\right)^1 \cdot \left(\frac{2}{4}\right)^3\\ & = \frac{2^4 \cdot 4!}{3! \cdot 4^4}\\ & = 4 \cdot \left(\frac{1}{2}\right)^4\\ & = 0.25 \end{align*} $$ (Note that at the end we get a binomial distribution)
But I just can't understand this intuitively.
Edit:
The root of my confusion:
Indeed, it is given that in an hour there are precisely 4 events.
Therefore the total 4 events are NOT distributed like Poission.
But it is not given how much time each event takes to occur, so maybe the second, third and fourth events are distributed like Poission? Perhaps the time that each event takes to occurs is distributed exponentially (which indicates on a Poission distribution)?
A common way to derive the Poisson is as the limit of a binomial as $n\to \infty, p\to 0: np=\lambda>0$.
So lets see how this helps:
At this point, all you've done is specify a particular Poisson distribution, as theoretically we are carrying out the limiting process I outlined above.
At this point, we can continue our limiting process by partitioning the interval $T$ into $n$ equally sized bins and asking what is the probability that there is one event in exactly $k$ bins and $0$ events in the remaining $n-k$ bins. This probability will be binomial with parameters $k=4$ $\rm num.trials=n$ and $$p=\frac{\exp(-\frac{\lambda T}{n})\left(\frac{\lambda T}{n}\right)}{1!}$$
The overall formula is:
$${n \choose 4} \left(\exp(-\frac{\lambda T}{n})\left(\frac{\lambda T}{n}\right)\right)^4\left(1-\exp(-\frac{\lambda T}{n})\left(\frac{\lambda T}{n}\right)\right)^{n-4}$$
If we take $n\to \infty$ we get (with the help of Wolfram Alpha):
$$\frac{(\lambda T)^4}{24 \exp(\lambda T)}$$
This is the denominator (which is just the usual Poisson probability of 4 events in T, see here for generalization). Your numerator will depend on how you allocate your events to subsets of $T$.
Now, notice that this process is the result of a limiting process on a bionomial. So how does this relate to your thought experiment?
What you did is you picked a particular partition of $T$ and allocated event counts to each (in this case, two equal sized partitions with 1 and 3 events, respectively). Hence, mathematically, this will result in a binomial distribution because you partitioned your interval into two bins.
What would happen if you defined a three bin partition? Say $t_1,t_2,t_3$? In this case, you would not get a binomial distribution on the probability of seeing a particular allocation of 4 events to these bins. Instead, you would get a multinomial distribution.
So, intuitively, by fixing the number of events and the interval, we arrive at a multinomial distribution over any partition of that interval, with the bin probabilities proportional to the fraction each bin takes up of the whole interval.
This arises because the expected value of a poisson random variable is linear in the interval length, so we get a nice interpretation of equiprobability for an event in the interval. This would not be the case if the expected value were non-linearly related to the interval length. The theoretical connection of the poisson with the Binomial further reinforces this intuition.