I am trying to learn more about the Inverse Gaussian Distribution and its applications (e.g. First Passage Time).
First, define a Brownian Motion with Drift: If $X(t) = \mu t + W(t)$ represents a Brownian motion with drift $\mu$, where $W(t)$ is a standard Brownian motion (i.e. $W(t) \sim N(0,t)$). Here, the initial position of this Brownian Motion is 0, i.e. $W(t=0)=0$. The drift term is important because without drift, the Inverse Gaussian Distribution is not defined.
Next, define First Passage Time: The first passage time $T$ is the time it takes for the process $X(t)$ to reach a certain level $a > 0$ for the first time.
Finally, define the Inverse Gaussian Distribution: The first passage time $T$ follows an Inverse Gaussian distribution with parameters $\mu = \frac{a}{\mu}$ and $\lambda = a^2$, i.e., $T \sim IG(\frac{a}{\mu}, a^2)$ :
$$ f(x;\mu,\lambda) = \left(\frac{\lambda}{2\pi x^3}\right)^{1/2} e^{ -\frac{\lambda(x-\mu)^2}{2\mu^2 x} } $$
where:
- $x > 0$ is the variable
- $\mu > 0$ is the mean
- $\lambda > 0$ is the shape parameter.
Note: It's clear to see that if the drift term $\mu$ is 0, we would end up with division by zero when trying to define the mean of the Inverse Gaussian distribution, which makes it undefined: When $\mu = 0$, the term $\frac{\lambda(x-\mu)^2}{2\mu^2 x}$ in the exponent of the distribution becomes $\frac{\lambda x^2}{2 \cdot 0^2 \cdot x}$, which is undefined because we're dividing by zero.
Here is where I get confused: I can not understand the relationship between the Brownian Motion with Drift and the Inverse Gaussian Distribution. That is, (given some initial conditions) is it possible to mathematically manipulate a Brownian Motion $X(t)$ and mathematically demonstrate that the time at which $X(t)$ will reach a certain point is indeed given by the Inverse Gaussian Distribution?
For example, suppose $T$ is the first passage time of a Brownian motion with drift to reach a certain level $a > 0$.
$T$ follows an Inverse Gaussian distribution with parameters $\mu = \frac{a}{\mu}$ and $\lambda = a^2$, i.e., $T \sim IG(\frac{a}{\mu}, a^2)$.
The probability that $T$ falls in the interval $[t_1, t_2]$ can be written as:
$$ P(t_1 \leq T \leq t_2) = \int_{t_1}^{t_2} f(t;\mu,\lambda) dt $$
where $f(t;\mu,\lambda)$ is the probability density function of the Inverse Gaussian distribution:
$$ f(t;\mu,\lambda) = \left(\frac{\lambda}{2\pi t^3}\right)^{1/2} e^{ -\frac{\lambda(t-\mu)^2}{2\mu^2 t} } $$
The expected value of $T$ is equal to the mean parameter of the Inverse Gaussian distribution, which is $\mu = \frac{a}{\mu}$. This represents the average amount of time needed for the Brownian motion with drift to reach the level $a$.
But I am still confused: Why is the distribution of the first passage time an Inverse Gaussian distribution in the first place? I get it that a Brownian Motion is related to a Gaussian Distribution via the Wiener Process $W(t)$ ... but why is the distribution of the first passage time an Inverse Gaussian distribution?
Thanks!
PS: I tried to write the Inverse Gaussian Distribution for a Brownian Motion that does not start at 0.
If we define a Brownian Motion with drift such that the position at time =0 is given by $x_0$:
$$X(t) = x_0 + \mu t + W(t)$$
Then the Inverse Gaussian Distribution for this modified Brownian Motion becomes:
$$T' \sim IG\left(\frac{a - x_0}{\mu}, (a - x_0)^2\right)$$
$$ f(t;\mu',\lambda') = \left(\frac{\lambda'}{2\pi t^3}\right)^{1/2} e^{ -\frac{\lambda'(t-\mu')^2}{2\mu'^2 t} } $$
where $\mu' = \frac{a - x_0}{\mu}$ and $\lambda' = (a - x_0)^2$.