Poisson-processes and it's arrival times

168 Views Asked by At

I am currently studying for my non-life insurance exam and have the following problem:

Let $S(t) = \sum_{i=1}^{N(t)} (X_i + T_i)^2$, where $X_i$ are i.i.d. r.v. with density $f(x)$ and $T_i$ are the arrival times of the homogeneous possion process $N(t)$ with intensity $\lambda =2$. With a fiven density $f(x) = \exp(-x)$ for $x \geq 0$, how can one calculate $E[S(t)]$?

Now I know that $P(T_1 > t) = \exp(-\int_0^t \lambda(s) ds) = \exp(-2t)$. So the density would be given by $g_1(t) = 2\exp(-2t) $.

Furthermore I could write the following:

$$ S(t) = \sum_{i=1}^{N(t)} (X_i + T_i)^2 = \sum_{i=1}^{N(t)} X_i^2 + 2\sum_{i=1}^{N(t)} X_i T_i + \sum_{i=1}^{N(t)}T_i^2 $$

If I would have only $\sum_{i=1}^{N(t)} X_i^2$ I'd know that

$$ E[S(t)] = E[S(t) \mid N(t)] = E[N(t)]E[X_i^2] $$

How can I proceed with the arrival times?

2

There are 2 best solutions below

0
On BEST ANSWER

http://www.maths.qmul.ac.uk/~ig/MAS338/PP%20and%20uniform%20d-n.pdf

Using the well-known result about the symmetric functional of the arrival times (Theorem 1.2), we have

$$ \begin{align} E[S(t)] &= E\left[\sum_{i=1}^{N(t)} (X_i + T_i)^2\right] \\ &= E\left[\left[\sum_{i=1}^{N(t)} (X_i + T_i)^2\Bigg|N(t)\right]\right] \\ &= E\left[\left[\sum_{i=1}^{N(t)} (X_i + U_i)^2\Bigg|N(t)\right]\right] \\ &= E[N(t)]E[(X_1+U_1)^2] \\ \end{align}$$

where $U_i$ are i.i.d. as $\text{Uniform}(0, t)$ and independent of $N(t)$. Now we just remain to calculate

$$ E[X_1] = 1, E[X_1^2] = 2, E[U_1] = \frac {t} {2}, E[U_1^2] = \frac {t^2} {3}$$

and thus

$$ E[N(t)]E[(X_1+U_1)^2] = \lambda t\left(2 + 2 \times 1 \times \frac {t} {2} + \frac {t^2} {3}\right) = \frac {\lambda t} {3}(t^2 + 3t + 6) $$

2
On

We need to know something about the joint law of $X_i$ and $T_i$ to compute this expectation. I'm going to assume independence since this makes the calculations easier, but if not the only difference will be the calculation of $E[X_iT_i]$.

While your last line is wrong - neither of those equalities is correct - the idea of first calculating $E[S(t)\,|\,N(t)]$ is a good one. But let's break it down even further and calculate the expectation of each of the summands. For the first term, we have $E[X_i^2]=\int x^2f(x)dx=2$, where the second equality is a simple computation using $f(x)=e^{-x}$.

For the other two terms, we need to know the distribution of $T_i$. Recall that $\{T_i-T_{i-1}\}$ is iid where $T_0=0$, so $T_i$ is the sum of $i$ independent copies of $T_1$. We know (or can calculate) $E[T_1]=\frac12$ and $E[T_1^2]=\frac12$. This implies $E[T_i]=\frac i2$ and $E[T_i^2]=\frac i2+2\cdot\frac{i(i+1)}2\cdot\frac12\cdot\frac12=\frac{i(i+3)}4$. Putting this all together (we also need $E[X_i]=1$) we get

$$E[(X_i+T_i)^2]=E[X_i^2]+2E[X_iT_i]+E[T_i^2]=2+i+\tfrac{i(i+3)}4,$$

where the middle term uses the assumed independence of $X_i$ and $T_i$. Now we have

$$E[S(t)\,|\,N(t)]=\sum_{i=1}^{N(t)}E[(X_i+T_i)^2]=\sum_{i=1}^{N(t)}\left[2+i+\frac{i(i+3)}4\right]=\frac{N(t)[N(t)^2+12N(t)+35]}{12}$$

where the last equality can be computed using standard sum identities. Finally we use the fact that $N(t)$ is Poisson of parameter $2t$ and directly calculate:

$$E[S(t)]=E[E[S(t)\,|\,N(t)]]=\sum_{n=0}^\infty\frac{n[n^2+12n+35]}{12}e^{-2t}\frac{(2t)^n}{n!}=\frac23t^3+5t^2+8t.$$