I'm just playing around with RandomVariate. Right now I can't really figure out why a linear combination with weights 0.5 of two identical normal distributions is not yielding the same distribution. 0.5*N($\mu$,$\sigma$)+0.5*N($\mu$,$\sigma$) should yield N($\mu$,$\sigma$).
This fails if I use a Monte Carlo approach.
Map[( \[Mu] = 1; \[Sigma] = 0.4; p1 = RandomVariate[NormalDistribution[\[Mu], \[Sigma]], 10^4]; p2 = RandomVariate[NormalDistribution[\[Mu], \[Sigma]], 10^4]; FindDistribution[0.5*p1 + 0.5*p2] ) &, Range[10]] I'm pretty sure Mathematica is doing everything right. Still I can't really figure out why the StandardDeviation is far away from 0.4.
TransformedDistribution[ 1/2 x + 1/2 y, {x \[Distributed] NormalDistribution[\[Mu], \[Sigma]], y \[Distributed] NormalDistribution[\[Mu], \[Sigma]]}]and see if you agree with its output. $\endgroup$