Anzeige


Random Number Generator | Random Subset | Random Time of Day

Random Number Generator

Generate random numbers with designated properties. With uniform distribution and bell-shaped distrubution, negative random numbers can be generated as well, minimum and maximum are at will. At left- and right-skewed distribution, the minimum has to be 0. The factor defines the shape of the skewness or bell. The calculation for the left-skewed distribution is (Random number to the power of Factor) / (Maximum to the power of Factor-1), for the right-skewed distribution it is (Maximum to the power of Factor - Random number to the power of Factor) / (Maximum to the power of Factor-1). For the bell-shaped distribution it is (Random number 1 + Random number 2 + ... + Random number Factor) / Factor. The algorithm used for the random numbers is Mersenne Twister.



Uniform distribution means that all values ​​are expected to occur equally often, not that they occur exactly the same. This is the case, for example, with dice, where every value from one to six has the same probability. Random values ​​are very often normally distributed, i.e. they follow a bell curve. In this case, the middle values ​​occur more frequently, the more extreme values ​​less frequently. This can be achieved with the sum of two dice, where seven is the most frequently expected value and two and twelve should occur least frequently. The distribution generated here did not follow the Gaussian bell curve.
Distributions that are steep to the left are often those where there is a real lower limit (for example 0 for lengths) but no or a very high upper limit. An example of this is the distribution of stars in the universe according to mass, where most are small, so-called red dwarfs. Right-stepping distributions, on the other hand, are less common. For example, if in a race a few are very fast and the majority run an average time, then the distribution is steep to the right. A good left- or right-skewed distribution requires a larger range of values ​​than the other two distributions.



© Jumk.de Webprojects | Online Calculators | Imprint & Privacy | German: Generator für Zufallszahlen





Anzeige