Tuesday, August 18, 2015

stochastic processes - Discretization of Wiener process


The Wiener process (Wt) is a continuous stochastic process that satisfies the following there conditions:




  1. W0=0,

  2. the increments dWt=Wt+dtWt are normally distributed with mean 0 and variance dt,

  3. the increments are mutually independents, i.e. dWi is independent from dWj for every i different from j.


I now want to discretize the Wiener process in order to simulate it as described in the beginning of “An algorithmic introduction to numerical simulatiom of stochastic differential equation” by Higham (2001).



  • First, I have to discretize the time interval [0,T] in N sub-intervals of equal length δt=TN. In this way, each of the N+1 time instants are given by ti=iδt.

  • Then, at each time instant ti, the discretized version of the Wiener process is Wi=Wi1+dWi1,
    where dWi1N(0,δt) and W0=0.



I would like to undestand how proprieties 2 and 3 imply the above iteration formula.



Answer



I think what is meant is that the increment of the brownian between discrete points (i1) and i is normally distributed with mean 0 and variance equal to δt which represents the length of the interval between the two discrete points. You can then write the increment as δt times a standard normal random. So the equation is to be read in conjunction with the statement following the equation.


enter image description here


To see it more clearly, let's represent the standard normal by Z so ZN(0,1) and the claim is that dWjδtZ. A linear transformation of a normal is normal, so δtZ is indeed normal, and its mean and variance are easy to calculate:


E[δtZ]=δtE[Z]=0


V[δtZ]=δtV[Z]=δt


And because dWj has the same properties, we can say dWjδtZ.


No comments:

Post a Comment

technique - How credible is wikipedia?

I understand that this question relates more to wikipedia than it does writing but... If I was going to use wikipedia for a source for a res...