I have two Poisson point processes. The first one has rate $\lambda_1$, the second one has rate $\lambda_2$. An even is supposed to happen any time k ($k \geq 2$) points are found inside the first Poisson Processes or the second (but NOT one point in the first process and one point in the second process). How the event occurrence can be described?
If $k = 1$ the situation would have been easy, since the sum of independent Point processes in that case is still a Point processes with parameter $\lambda = \lambda_1 + \lambda_2$. My question is what happens when the points required in each single point process are $k \geq 2$.
I mean something like what is stated here with Poisson Random Variables. The difference is that, in my case, the situation is $p_z(Z) = P(Z = z) = $ $\sum_{j=0}^{z} P(X = k j) \cdot P(Y = k (z-j) )$, with $k$ being a integer such that $k \geq 2$
Let $\{X(t):t\geqslant0\}$ be a continuous-time Markov chain on $\{0,1, (1,1), 2, (2,2)\}$ with generator $$ Q = \left( \begin{array}{ccccc} -\lambda _1-\lambda _2 & \lambda _1 & 0 & \lambda _2 & 0 \\ 0 & -\lambda _1-\lambda _2 & \lambda _1 & \lambda _2 & 0 \\ 0 & 0 & -\lambda _2 & \lambda _2 & 0 \\ 0 & \lambda _1 & 0 & -\lambda _1-\lambda _2 & \lambda _2 \\ 0 & \lambda _1 & 0 & 0 & -\lambda _1 \\ \end{array} \right). $$ Set $T_0=0$ and $T_{n+1} = \inf\{t>T_n: X(t) \in \{(1,1),(2,2)\}$, and let $S_n=i$ if $X(T_n)=(i,i)$. I wrote some $\texttt R$ code to simulate this process:
Perhaps it can be of use.