Why is the Wiener process defined using step size \(\sqrt{h}Z_j\)?

  • Thread starter Thread starter Apteronotus
  • Start date Start date
AI Thread Summary
The Wiener process is defined using the step size \(\sqrt{h}Z_j\) to ensure that the variance converges to a finite, non-zero value as the time step \(h\) approaches zero. This scaling allows the increments to maintain the properties of a standard normal distribution, which is essential for the process to exhibit the correct variance behavior. If a different scale, such as \(h \cdot Z_j\) or \(h^2 \cdot Z_j\), were used, the variance would not align with the defining characteristics of the Wiener process. As the time steps decrease, the process diverges, but the distribution remains consistent due to the chosen scaling. Ultimately, this formulation preserves the fundamental properties of the Wiener process, including the expected second moment.
Apteronotus
Messages
201
Reaction score
0
Introductory texts on Wiener Process often introduce the topic by dividing the time into small time steps h=\Delta t.
Then the value of the process W_j at time j, t_j is given by adding up many independent and normally distributed increments:

<br /> W_{j+1}=W_j+\sqrt{h}Z_j<br />

The Wiener process W(t) is generated in the limit as the step size h \rightarrow 0.

My question is why is the step size \sqrt{h}Z_j and not some other scale of h, such as h\cdot Z_j or h^2 \cdot Z_j, say?
 
Physics news on Phys.org
Apteronotus said:
My question is why is the step size \sqrt{h}Z_j and not some other scale of h, such as h\cdot Z_j or h^2 \cdot Z_j, say?

This scale is the only one where the variance converges to a finite non-zero value.
 
I think of it as follows. Let Zj be standard normal, N(0,1) for all j. Let Wt be a Wiener (Brownian) process constructed, perhaps, through a Brownian bridge. Wt - Ws is distributed normally with mean 0 and variance |t - s|.

Wt(j) - Wt(j-1) = Zj\sqrt{t(j) - t(j-1)}. Then Var[Wt(j) - Wt(j-1)] = Var[Zj]|t(j) - t(j-1)| = |t(j) - t(j-1)|.

Had I replaced \sqrt{t(j) - t(j-1)} with anything else then I would not have obtained the correct variance for a Wiener process.
 
Last edited:
Yes, I see that that upon choosing the scale as \sqrt{h}, the distribution of W(t) will not depend on the time step h.

However, notice that the value of Weiner process itself will diverge as we take smaller and smaller time steps. Why?

Below I've done the calculations and I'm almost certain they are correct. (I use the law of large numbers to go from the fourth to the fifth equation)
<br /> W(t)=lim_{n \rightarrow \infty} \sum_{k=0}^n \sqrt{\frac{t}{n}} Z_k
<br /> W(t)=\sqrt{t}\cdot lim_{n \rightarrow \infty}\frac{1}{\sqrt{n}}\sum_{k=0}^n Z_k
<br /> W(t)=\sqrt{t}\cdot lim_{n \rightarrow \infty}\frac{\sqrt{n}}{n}\sum_{k=0}^n Z_k
<br /> W(t)=\sqrt{t}\cdot \left(lim_{n \rightarrow \infty}\sqrt{n}\right) \cdot \left(lim_{n \rightarrow \infty}\frac{1}{n}\sum_{k=0}^n Z_k\right)
<br /> W(t)=\sqrt{t}\cdot \left(lim_{n \rightarrow \infty}\sqrt{n}\right) \left(\mu_z\right)
<br /> W(t)=\sqrt{t}\cdot \mu_z \cdot lim_{n \rightarrow \infty}\sqrt{n} \rightarrow \infty


where above W_0=0, t=n\cdot h and \mu_z is the mean of the Z_j
 
Apteronotus said:
<br /> W(t)=\sqrt{t}\cdot \mu_z \cdot lim_{n \rightarrow \infty}\sqrt{n} \rightarrow \infty<br />
where above W_0=0, t=n\cdot h and \mu_z is the mean of the Z_j

Here \mu_z=0. To add a drift term (eg in a stochastic DE) it must have size dt not \sqrt{dt}.
 
The gaussian increments should have a zero mean, as mentioned above. So in line four your are splitting a limit into one part that approaches infinity and one part that approaches 0. That will of course not lead you to the answer.

Anyway, when you perform this limiting procedure, the right hand side will converge towards a random variable, namely the Wiener process at time t, so it will not approach any real number.

In order to show the equivalence between the two on the level of distributions, you can check the different moments of the distribution of the random variables on each side. In particular the second moment about 0 should be t, since this is one of the defining properties of the Wiener process:

Left hand side, by def. of Wiener process

<br /> E[W(t)W(t)] = t<br />

Then check the right hand side, before taking the limit. We get

<br /> \frac{t}{n}\sum_{i,j}E[Z_i Z_j] = \frac{t}{n}\sum_{i}E[Z_i Z_i]<br /> = \frac{t}{n}\sum_{i} 1 = t<br />

where I have used independence of increments:

<br /> E[Z_i Z_j] = 0\quad\mathrm{when}\quad i\neq j<br />

and by definition:

<br /> E[Z_iZ_i] = 1<br />

So the second moment of the right hand side has the correct value, and is even independent of n.

Torquil
 
I was reading a Bachelor thesis on Peano Arithmetic (PA). PA has the following axioms (not including the induction schema): $$\begin{align} & (A1) ~~~~ \forall x \neg (x + 1 = 0) \nonumber \\ & (A2) ~~~~ \forall xy (x + 1 =y + 1 \to x = y) \nonumber \\ & (A3) ~~~~ \forall x (x + 0 = x) \nonumber \\ & (A4) ~~~~ \forall xy (x + (y +1) = (x + y ) + 1) \nonumber \\ & (A5) ~~~~ \forall x (x \cdot 0 = 0) \nonumber \\ & (A6) ~~~~ \forall xy (x \cdot (y + 1) = (x \cdot y) + x) \nonumber...

Similar threads

Back
Top