This question isn't strictly about Perl, but the project I'm working on is in Perl, so I figure it's appropriate.
I've been given a function that returns random numbers distributed normally around a given mean in the range (mean - delta, mean + delta). I'm supposed to write a second function that will take the values returned by that function and skew the distribution towards some value other than the mean. How do I do this? Unfortunately, I can't just write another RNG that would produce values with the skewed distribution. I've found a couple of ways to do that on the 'net, but the people who put ink on my paychecks say I don't get to. Many thanks!