I want to craft an algorithm that will give me numbers that are random in the sense that I have no idea what they'll be, but at the same time, numbers that are closer to 0 have to be more likely to occur as output while those closer to 1 must be less likely. I'd like to play around with both linear and exponential distributions, so please give at least hints for implementing both.
I've thought and thought about how to approach this issue, but I still don't even have a clue, so any pointers would be appreciated.
NOTE: I'm not looking to discuss, nor do I yet understand, the intricacies of "true" vs. "pseudo" randomness... This has nothing to do with security or cryptography, and for it I'll simply be using Javascript's Math.random() as a seed, just so we're all clear about what I'm asking.