So most programming languages contain a rand() functionality whereby you can generate a random number between 0 to 1....
My question is, is there a way to manipulate this standard rand() functionality such that you are able to instead draw a random number from normal distribution with a mean and standard deviation?
Notice that I'm not asking whether or not a language has a normal distribution functionality built in, I'm asking if you can "simulate" drawing a normal distribution random variable using a rand() function...
Here is a simple way that works (from here):