I am having difficulty with the following problem. I tried conditioning on T_n but I am unsure how to proceed with that conditional expectation. Thanks for the help!
Poisson Process (Renewal) Question
1
$\begingroup$
probability
stochastic-processes
poisson-process
renewal-processes
1 Answers
3
$\Pr(N(t)=n\text{ and }T_{N(t)+1} > t+s)$ is the probability that the number of renewals before time $t$ is exactly $n$ and the time until the next renewal after that is more than $s$. This is $\Pr(N(t)=n) \cdot \Pr(T_{N(t)+1} > t+s)$, because the two events are independent because they are about non-overlapping time intervals in a Poisson process. The waiting time until the next renewal is exponentially distributed with mean $1/\lambda$. So the probability that it exceeds $s$ is $e^{-\lambda s}$. Hence the probability you're looking for is $ \frac{(\lambda t)^n e^{-\lambda t}}{n!}\cdot e^{-\lambda s} = \frac{(\lambda t)^n e^{-\lambda (t+s)}}{n!}. $
-
1Another way to look at it is that you're looking for the probability that exactly $n$ renewals happen before time $t$ and none happen between then and time $t+s$. So you have two independent Poisson random variables, one with expectation $\lambda t$ and the other $\lambda(s-t)$. The probability that the first equals $n$ is $(\lambda t)^n e^{-\lambda t}/n!$. The probability that the second equals $0$ is $e^{-\lambda s}$. – 2012-03-06