Suppose that $N_t$ is a Poisson process with rate $\lambda$.
- Find $\mathbb E\left[\frac{N^2_1}{N_3}\right]$
- Find $\mathbb E\left[\frac{N^2_3}{N_1}\right]$
Now, I know that if $N_t$ is a Poisson process then $N_t$ represents the number of arrivals up to time $t$. In fact, we can derive that if $N_t$ is a Poisson process then (surprise!) $N_t$ is Poisson-distributed with parameter $\lambda t$. That is, \begin{equation*} \mathbb P(N_t = k) = \frac{e^{-\lambda t}}{k!} (\lambda t)^k, \quad t \geq 0 \end{equation*}
Additionally, an important result is that the inter-arrival times of each arrival is exponentially distributed with rate $\lambda$. That is, if $T_1$ is the time until the first arrival of our Poisson process $N_t$ then \begin{equation*} \mathbb P(T_1 \leq t) = 1 - e^{\lambda t}, \quad t \geq 0 \end{equation*}
Up until now I've basically listed just a bunch of (probably useful) facts/results about Poisson processes. However, I've yet to manage to weave them into something that'll help me with a solution.
One problem I encountered is that, taking (1) as an example, $N_3 = 0$ with a nonzero probability, blowing up the expectation? Clearly this is just a heuristic argument, but we can illustrate it more clearly by attempting to solve the expectation by simply computing it:
\begin{equation*} \mathbb E\left[\frac{N^2_1}{N_3}\right] = \sum^\infty_{n = 0} \sum^\infty_{m = 0} \frac{n^2}{m} \mathbb P(N_1 = n, N_3 = m) \end{equation*}
Clearly any term with $m = 0$ will give us a singularity, and so I must have approach this poorly. It is also not obvious to me how to find the joint probability
\begin{equation*} \mathbb P(N_1 = n, N_3 = m) \end{equation*}
Thank you for any input!
Edit. I've thought about this a bit and looked through some older course material (+ the help of Henry's comment!). I forgot a nice property of Poisson processes: If $N_t$ is the number of arrivals up to time $t$ and $N_{t+s}$ the arrivals up to time $t + s$ $(t, s > 0)$ then \begin{equation*} \mathbb P(N_{t + s} - N_t = k) = e^{-\lambda t} \frac{(\lambda t)^k}{k!}, \quad k = 0, 1, 2, ... \end{equation*}
That is, $N_{t + s} - N_t \sim \text{Pois}(\lambda s)$. This property permits us to write $N_3$ in terms of $N_1$ and an independent Poisson random variable with parameter $2\lambda$: \begin{equation*} N_3 = N_1 + (N_3 - N_1) \end{equation*}
where \begin{align*} N_1 &\sim \text{Pois}(\lambda) \\ N_3 - N_1 &\sim \text{Pois}(2\lambda) \end{align*}
and the independence of $N_1$ and $N_3 - N_1$ is gained via the fact that Poisson processes have independent (non-overlapping) increments.
For brevity, denote \begin{align*} X &\stackrel{\text{def}}{=} N_1 \\ Y &\stackrel{\text{def}}{=} N_3 - N_1 \end{align*}
then $X \sim \text{Pois}(\lambda)$ and $Y \sim \text{Pois}(2\lambda)$, and $X$ and $Y$ are independent of each other. Therefore, our expectation of $N_1$ and $N_3$ becomes the expectation of independent $X$ and $Y$ \begin{align*} \mathbb E\left[\frac{N^2_1}{N_3}\right] &= \mathbb E\left[\frac{X^2}{X + Y} \right] \\ &= \sum_x \sum_y \frac{x^2}{x + y} \mathbb P(X = x, Y = y) \\ &= \sum_x \sum_y \frac{x^2}{x + y} \mathbb P(X = x)\mathbb P(Y = y) \quad \text{($X$ and $Y$ indep.)} \\ &= \sum_x \sum_y \frac{x^2}{x + y} e^{-\lambda} \frac{\lambda^x}{x!} e^{-2\lambda} \frac{(2\lambda)^y}{y!} \end{align*}
Now, I've played a bit around with these sums and I've yet to yield anything conclusive. Not to mention the issue with 0 in the denominator is still present.