Page’s link: Back to GitHub README

Sticky Brownian Motion

This repository implements a discrete Markov chain approximation of a Brownian motion in $[0,1]$, with different boundary conditions at $0$, de UndeSticky Brownian Motion. The discrete dynamics depends on a parameter $a$ and, under a diffusive rescaling, for some choice of the parameter, the limiting Brownian motion is a Sticky Brownian at $0$. Other boundary behaviours at $0$, depending on $a$, show up.


State Space

We consider the discrete state space \(\{0, \tfrac{1}{N}, \tfrac{2}{N}, \dots, 1\},\) where the chain moves between adjacent points.

For implementation purposes, the states are indexed as integers: \(\{0, 1, 2, \dots, N\},\) with state $k$ corresponding to $k/N$.


Transition Rates


Invariant Measure

Since the chain is a birth-death process, we can compute its invariant distribution $\pi$ using detailed balance.

For interior states: \(\pi(k+1)/\pi(k) = 1/1 = 1 \quad \implies \quad \pi(k) \; \text{constant for } k=1,\dots,N.\)

At the left boundary: \(\frac{\pi(1)}{\pi(0)} = \frac{N^{a-1}}{N^a} = \frac{1}{N}.\)

At the right boundary: \(\pi(N)/\pi(N-1) = 1.\)

Thus: \(\pi(0) \propto N, \qquad \pi(k) \propto 1 \quad (k=1,\dots,N).\)

Normalizing: \(Z = N + N = 2N,\) so \(\pi(0) = \tfrac{1}{2}, \qquad \pi(k) = \tfrac{1}{2N}, \quad k=1,\dots,N.\)


Scaling Limits

The aim is to analyze the diffusive scaling limit of the process as $N \to \infty$.
Depending on the value of the parameter $a$, we observe different limiting behaviors at the left boundary:


Figures