uniformSumDistribution :: (Number, Number, Number) -> Number

Equivalent to running uniformDistribution N-times and adding the results.

Example

Simulate a D&D type 4d6 roll (sum of four six-sided dice rolls):

x = uniformSumDistribution 1, 6, 4

See Also

uniformDistribution, normalDistribution

References