The mathematics of uncertainty
Beyond the Gaussian, a few continuous distributions show up again and again. Each answers a different kind of question: "anywhere in a range?", "how long until the next event?", "how is an unknown probability itself distributed?"
Uniform U(a, b) spreads probability flatly across an interval, with constant density 1/(b−a). It's the default "I know nothing except the range," and the raw material for sampling: every random generator starts from U(0,1).
Exponential(λ) models the time until a random event when events happen at a steady average rate λ. It's memoryless: having waited a while doesn't change the time still to wait.