Suppose we have the data $A, B, C, D, E,$ and $F$ that are expected to arrive at the destination at $t_A, t_B, t_C,t_D,t_E,$ and $t_F$, respectively. However, the channel in which these data propagate induces randomness such that the data arrive at random times $t'_A, t'_B, t'_C,t'_D,t'_E,$ and $t'_F$, respectively. $T$ is some constant time separation to avoided overlapping and ideally all data should arrive within $t_i$ and $t_i+T$. But, $T$ cannot be too large as it can degrade performance (smaller $T$ is preferred). As an example, $C$ is arriving early and overlaps temporally (that is, in time) with $B$, $D$ is arriving late and overlaps temporally with $E$, and $F$ is arriving early and overlaps temporally with $E$.
I want to know the probability that two consecutive data overlap temporally with one another (illustrated by the darker regions). In other words, the time at which two consecutive data arrive is less than $\tau\ (\tau<T)$, which is the duration of a data and is the same for all data.
Let the random arrival time of a data follow the Normal distribution, such that $t'_i \sim N(\mu_i,\sigma^2_i)$, where $i \in (A,B,C,D,E,F)$ and $\mu_i=t_i$.
Then, from here, that probability is
$$P(\text{Two consecutive data are overlapping})=P(Z<\tau)=P\left(\frac{Z-\mu_Z}{\sigma_Z}<\frac{\tau-\mu_Z}{\sigma_Z}\right) \\ =\Phi\left(\frac{\tau-\mu_Z}{\sigma_Z}\right)\ (1)$$
where $Z=t_j-t_k, j \neq k$ and $j \in (F,E,D,C,B), k \in(E,D,C,B,A)$.
Eq. (1) allows me to find the probability that two data overlap.
How can I formulate and determine the overall probability that the consecutive data are overlapping temporally?
I may be mistaken, but what I gather is that the overall probability is $P(A \text{ and } B \text{ are overlapping})$ and $P(B \text{ and } C \text{ are overlapping})$ and $P(C \text{ and } D \text{ are overlapping})$ and $P(D \text{ and } E \text{ are overlapping})$ and $P(E \text{ and } F \text{ are overlapping})$.
How can I proceed further?
Additionally, since $E$ is overlapping temporally with $D$, we consider them to be destroyed. Then $F$ will not be overlapping temporally with $E$. So, how can we incorporate this condition in the overall probability?
Thank you in advance.