0

So lets assume I have a Gaussian random number generator that takes 2 parameters std deviation and mean, X(d,m). What I want to do is specify the std deviation for the number generator such that i get a random number in a given range 95% of the time e.g. -n< X(d,0)< n. Knowing n how can I solve for std deviation?

Andy McCall
  • 446
  • 1
  • 4
  • 15

1 Answers1

0

95% confidence interval corresponds to 1.96 standard deviations either side of the mean for a normal distribution. This means that 95% of the total area under a normal curve is contained within the interval

    [mean -1.96*S.D, mean + 1.96*S.D] 

For example if your mean is zero and you want numbers to fall in the range [-3.92,3.92] you would choose a standard deviation of 2 for your gaussian random number generator.

mathematician1975
  • 21,161
  • 6
  • 59
  • 101