[Math] Variance of Time-Integrated Ornstein-Uhlenbeck Process

probabilitystochastic-calculusstochastic-integralsstochastic-processes

I'm attempting to filter white noise from a deterministic, finite-power signal using a low-pass filter. This filter can be described using an exponentially-decaying response function:

$$ h(t) = \gamma \exp (-\gamma t) $$

Evaluating the Wiener integral for the filtered noise results in a zero-mean Ornstein-Uhlenbeck process, whose variance is:

$$\sigma^2_{OU} =\frac{\gamma}{2}\left( 1-\exp(-2\gamma t)\right)$$

The task now is to find the variance of the time-integrated process. My question is whether the following procedure, based on Wiener integrals, is correct, and if not, what is the correct procedure?


First, we use the fact that Gaussian random variables are determined by their means and variances to express the zero-mean OU process as the product of a deterministic function and a Wiener process:

$$ \sigma^2_W = t \quad \therefore \quad \sigma^2_{F\times W} = F^2(t)\times t $$
$$ F(t) = \frac{\gamma}{2} \sqrt{\frac{1-\exp(-2\gamma t)}{t}} \quad \rightarrow \quad \sigma^2_{F\times W} = \sigma^2_{OU}$$

We perform integration by parts:

$$ \int_0^t W(\tau)F(\tau)d\tau = \left. \left[W(\tau)\int_{0}^{\tau}F(\tau ')d\tau ' \right] \right \vert_0^t – \int_0^t \left( \int_{0}^{\tau}F(\tau ')d\tau ' \right)dW(\tau)$$

Labelling $\int_{0}^{\tau}F(\tau ')d\tau '$ as $\tilde{F}(\tau)$, we write the variance of the integrated process as the sum of the variances of the two terms above. The variance of the left term is $ \tilde{F}^2(t)\times t$, since this is just the Wiener process, multiplied by a deterministic function. The term on the right is a Wiener integral, whose variance is $\int_0^t \tilde{F}^2(t) dt$. I'll leave $\tilde{F}(t)$ unspecified here, since the integral is difficult.


So, have I made some error in deriving the variance?

Best Answer

An Ornstein-Uhlenbeck process is not the product of a Wiener process with a deterministic function. A Gaussian process $X(t)$ is not determined by its mean and variance for each $t$, but rather by its mean for each $t$ and by the covariance of $X(s)$ and $X(t)$ for each $s,t$.

Related Question