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:

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:

We have to discern from pure Brownian motion (free diffusion) to Brownian motion in a potential (also called diffusion with drift, or Langevin dynamics). Let's break it down step-by-step.

🔹 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 Ito's integral. I have to understand this better yet.