I would like to numerically solve a differential equation which contains a derivative of a random number (using a finite difference method with a time step $\Delta t$).
Let say I need to solve for $y(t)$ in $$ \frac{d^2}{dt^2}y(t) + A\frac{d}{dt}y(t) + By(t) = f(t) + C\frac{d}{dt}\xi_1(t) + D\xi_2(t)$$ where $\xi_1(t)$ and $\xi_2(t)$ is a random Gaussian variable (mean = 0, s.d. = 1). $A,B,C,D$ are constants and $f(t)$ is a known function of time.
Please could anyone tell what is the proper numerical treatment for the term $\frac{d}{dt}\xi_1(t)$?