Brownian motion

Idea

Think of Brownian motion Wt​ as the limit of a random walk when:

Definition

Brownian motion W(t), also called Wiener process, is a fundamental stochastic process with the following properties:

Visualization: we fix a particular time increment Δt and create a draw for W(t+Δt)W(t). Then we "integrate" (cumulative sums) the results to obtain a sample of W.

Heuristic Interpretation of dWdt

Although dWdt does not exist in the classical sense (because Brownian paths are too irregular), we can informally treat it as a kind of random increment:

dWdtGaussian noiseN(0,)

So over a small interval dt, we write:

dW(t)=dWdtdtN(0,dt)

This forms the basis of numerical simulation of Brownian motion and stochastic differential equations (SDEs).

Next level:

Functions of a Brownian motion

X(t)=f(t,W(t))

where W(t) is Brownian motion, the result is still a random function, because W(t) itself is a random process.

Pure Brownian Motion (No Potential)

dW(t)N(0,dt)

This is equivalent to the free particle case in physics: no forces, no potential, just randomness.

Brownian Motion in a Potential U(q)

Once you add a potential U(q), something changes:

This leads to a stochastic ordinary differential equation of the form:

dq(t)=U(q(t))dt+2κdW(t)

So each step is still Gaussian, but centered around a drift:

dq(t)N(U(q(t))dt,2κdt)

Connecting to the Path Integral View

This connect with Feynman's path integral formulation. And it is related to Itô integral. I have to understand this better yet.