The stochastic part of the Euler-Maruyama method is often written with random increments with zero mean and variance $\Delta t$. For example for the SDE (drift diffusion) $$ dX(T)=\delta dt + sdW(t) $$ one could simulate this as $$ X(t+\Delta t)=X(t) + \delta\Delta t+\Delta W, $$ where $\Delta W\sim Normal(0,s^2\Delta t)$.
However, wouldn't this be equivalent to the (maybe simpler form) $$ X(t+\Delta t) = X(t) + \Delta X(t)\Delta t $$ with $\Delta X(t) \sim \cdot Normal(\delta, s^2)$, since here the $\Delta t$ scales both the variance as well as the mean. Or is there something that I am missing and these two forms are not equivalent? I feel, that this is much closer to the original Euler method on which the Euler-Maruyama method is based.
rnorm(1,delta*dt,sqrt(dt)))? – LiKao Sep 15 '21 at 09:06