Trucks arrive at a particular toll booth on the highway according to Poisson process with rate one per minute. Assume midnight 12:00 AM as the start time of the process. Compute the probability that there are two arrivals during [01:01,01:04] AM. and three arrivals in the interval [01:03,01:05] AM
Since it's a Poisson process so X(t) follows Poisson( t ) distribution since rate is one given.
I was taking cases as number of arrivals that can happen in different time interval, e.g. two arrivals in [01:01,01:03] and three arrivals in [01:04,01:05] but it's getting very long.
Your approach is correct. Always try to divide the question to disjoint time segments. Here the segments are $I_1=[1:01,1:03]$, $I_2=[1:03,1:04]$ and $I_3=[1:04,10:05]$. Two events in $I_1\cup I_2$ and three events in $I_2\cup I_3$ can occur in the following cases $(I_1,I_2,I_3)$: $(0,2,1)$, $(1,1,2)$ or $(2,0,3)$. Can you continue from here?