Following the previously published question, I'm looking for the solution of RecurrenceTable with explicit random variable. For example, something like
RecurrenceTable[{y[n + 1] == y[n] ξ[n] + Sqrt[y[n]] ξ[n]^2,
ξ[n] == RandomVariate[NormalDistribution[]], y[1] == 1}, {y}, {n, 1, 10}]
Of cause, the random variable has to be updated at each step.
Update: The long-term goal is the implicit Milstein solution for stochastic differential equations (SDE), since the current Mathematica version (10.3) supports only explicit solutions.
RandomProcess– LLlAMnYP Nov 18 '15 at 09:30FoldListmay be helpful, but I still do not understand how to implement it. – Moshe Gueta Nov 18 '15 at 13:53NestList[{#, Sqrt[#]}.({#, #^2} & @ RandomVariate[NormalDistribution[]]) &, 1, 10]does the trick if you just want a list of numbers. – LLlAMnYP Nov 18 '15 at 17:22RecurrenceTablesolution below is more intuitive and, therefore, easier to implement. – Moshe Gueta Nov 23 '15 at 09:52