blob: 0aee06eb29d45c022371d41ff1c493b75e6cdb85 [file] [log] [blame]
Guido van Rossume7b146f2000-02-04 15:28:42 +00001"""Random variable generators.
Guido van Rossumff03b1a1994-03-09 12:55:02 +00002
Tim Petersd7b5e882001-01-25 03:36:26 +00003 integers
4 --------
5 uniform within range
6
7 sequences
8 ---------
9 pick random element
Raymond Hettingerf24eb352002-11-12 17:41:57 +000010 pick random sample
Tim Petersd7b5e882001-01-25 03:36:26 +000011 generate random permutation
12
Guido van Rossume7b146f2000-02-04 15:28:42 +000013 distributions on the real line:
14 ------------------------------
Tim Petersd7b5e882001-01-25 03:36:26 +000015 uniform
Christian Heimesfe337bf2008-03-23 21:54:12 +000016 triangular
Guido van Rossume7b146f2000-02-04 15:28:42 +000017 normal (Gaussian)
18 lognormal
19 negative exponential
20 gamma
21 beta
Raymond Hettinger40f62172002-12-29 23:03:38 +000022 pareto
23 Weibull
Guido van Rossumff03b1a1994-03-09 12:55:02 +000024
Guido van Rossume7b146f2000-02-04 15:28:42 +000025 distributions on the circle (angles 0 to 2pi)
26 ---------------------------------------------
27 circular uniform
28 von Mises
29
Raymond Hettinger40f62172002-12-29 23:03:38 +000030General notes on the underlying Mersenne Twister core generator:
Guido van Rossume7b146f2000-02-04 15:28:42 +000031
Raymond Hettinger40f62172002-12-29 23:03:38 +000032* The period is 2**19937-1.
Thomas Wouters0e3f5912006-08-11 14:57:12 +000033* It is one of the most extensively tested generators in existence.
Thomas Wouters0e3f5912006-08-11 14:57:12 +000034* The random() method is implemented in C, executes in a single Python step,
35 and is, therefore, threadsafe.
Tim Peterse360d952001-01-26 10:00:39 +000036
Guido van Rossume7b146f2000-02-04 15:28:42 +000037"""
Guido van Rossumd03e1191998-05-29 17:51:31 +000038
Christian Heimesfe337bf2008-03-23 21:54:12 +000039from __future__ import division
Raymond Hettinger2f726e92003-10-05 09:09:15 +000040from warnings import warn as _warn
41from types import MethodType as _MethodType, BuiltinMethodType as _BuiltinMethodType
Raymond Hettinger91e27c22005-08-19 01:36:35 +000042from math import log as _log, exp as _exp, pi as _pi, e as _e, ceil as _ceil
Tim Petersd7b5e882001-01-25 03:36:26 +000043from math import sqrt as _sqrt, acos as _acos, cos as _cos, sin as _sin
Raymond Hettingerc1c43ca2004-09-05 00:00:42 +000044from os import urandom as _urandom
45from binascii import hexlify as _hexlify
Raymond Hettinger886687d2009-02-24 11:27:15 +000046import collections as _collections
Guido van Rossumff03b1a1994-03-09 12:55:02 +000047
Raymond Hettingerf24eb352002-11-12 17:41:57 +000048__all__ = ["Random","seed","random","uniform","randint","choice","sample",
Skip Montanaro0de65802001-02-15 22:15:14 +000049 "randrange","shuffle","normalvariate","lognormvariate",
Christian Heimesfe337bf2008-03-23 21:54:12 +000050 "expovariate","vonmisesvariate","gammavariate","triangular",
Raymond Hettingerf8a52d32003-08-05 12:23:19 +000051 "gauss","betavariate","paretovariate","weibullvariate",
Raymond Hettinger28de64f2008-01-13 23:40:30 +000052 "getstate","setstate", "getrandbits",
Raymond Hettinger23f12412004-09-13 22:23:21 +000053 "SystemRandom"]
Tim Petersd7b5e882001-01-25 03:36:26 +000054
55NV_MAGICCONST = 4 * _exp(-0.5)/_sqrt(2.0)
Tim Petersd7b5e882001-01-25 03:36:26 +000056TWOPI = 2.0*_pi
Tim Petersd7b5e882001-01-25 03:36:26 +000057LOG4 = _log(4.0)
Tim Petersd7b5e882001-01-25 03:36:26 +000058SG_MAGICCONST = 1.0 + _log(4.5)
Raymond Hettinger2f726e92003-10-05 09:09:15 +000059BPF = 53 # Number of bits in a float
Tim Peters7c2a85b2004-08-31 02:19:55 +000060RECIP_BPF = 2**-BPF
Tim Petersd7b5e882001-01-25 03:36:26 +000061
Raymond Hettinger356a4592004-08-30 06:14:31 +000062
Tim Petersd7b5e882001-01-25 03:36:26 +000063# Translated by Guido van Rossum from C source provided by
Raymond Hettinger40f62172002-12-29 23:03:38 +000064# Adrian Baddeley. Adapted by Raymond Hettinger for use with
Raymond Hettinger3fa19d72004-08-31 01:05:15 +000065# the Mersenne Twister and os.urandom() core generators.
Tim Petersd7b5e882001-01-25 03:36:26 +000066
Raymond Hettinger145a4a02003-01-07 10:25:55 +000067import _random
Raymond Hettinger40f62172002-12-29 23:03:38 +000068
Raymond Hettinger145a4a02003-01-07 10:25:55 +000069class Random(_random.Random):
Raymond Hettingerc32f0332002-05-23 19:44:49 +000070 """Random number generator base class used by bound module functions.
71
72 Used to instantiate instances of Random to get generators that don't
Raymond Hettinger28de64f2008-01-13 23:40:30 +000073 share state.
Raymond Hettingerc32f0332002-05-23 19:44:49 +000074
75 Class Random can also be subclassed if you want to use a different basic
76 generator of your own devising: in that case, override the following
Raymond Hettinger28de64f2008-01-13 23:40:30 +000077 methods: random(), seed(), getstate(), and setstate().
Benjamin Petersond18de0e2008-07-31 20:21:46 +000078 Optionally, implement a getrandbits() method so that randrange()
Raymond Hettinger2f726e92003-10-05 09:09:15 +000079 can cover arbitrarily large ranges.
Raymond Hettingeref4d4bd2002-05-23 23:58:17 +000080
Raymond Hettingerc32f0332002-05-23 19:44:49 +000081 """
Tim Petersd7b5e882001-01-25 03:36:26 +000082
Christian Heimescbf3b5c2007-12-03 21:02:03 +000083 VERSION = 3 # used by getstate/setstate
Tim Petersd7b5e882001-01-25 03:36:26 +000084
85 def __init__(self, x=None):
86 """Initialize an instance.
87
88 Optional argument x controls seeding, as for Random.seed().
89 """
90
91 self.seed(x)
Raymond Hettinger40f62172002-12-29 23:03:38 +000092 self.gauss_next = None
Tim Petersd7b5e882001-01-25 03:36:26 +000093
Raymond Hettingerf763a722010-09-07 00:38:15 +000094 def seed(self, a=None, version=2):
Tim Peters0de88fc2001-02-01 04:59:18 +000095 """Initialize internal state from hashable object.
Tim Petersd7b5e882001-01-25 03:36:26 +000096
Raymond Hettinger23f12412004-09-13 22:23:21 +000097 None or no argument seeds from current time or from an operating
98 system specific randomness source if available.
Tim Peters0de88fc2001-02-01 04:59:18 +000099
Raymond Hettingerf763a722010-09-07 00:38:15 +0000100 For version 2 (the default), all of the bits are used if a is a str,
101 bytes, or bytearray. For version 1, the hash() of a is used instead.
102
103 If a is an int, all bits are used.
104
Tim Petersd7b5e882001-01-25 03:36:26 +0000105 """
106
Raymond Hettinger3081d592003-08-09 18:30:57 +0000107 if a is None:
Raymond Hettingerc1c43ca2004-09-05 00:00:42 +0000108 try:
Guido van Rossume2a383d2007-01-15 16:59:06 +0000109 a = int(_hexlify(_urandom(16)), 16)
Raymond Hettingerc1c43ca2004-09-05 00:00:42 +0000110 except NotImplementedError:
Raymond Hettinger356a4592004-08-30 06:14:31 +0000111 import time
Guido van Rossume2a383d2007-01-15 16:59:06 +0000112 a = int(time.time() * 256) # use fractional seconds
Raymond Hettinger356a4592004-08-30 06:14:31 +0000113
Raymond Hettingerf763a722010-09-07 00:38:15 +0000114 if version == 2 and isinstance(a, (str, bytes, bytearray)):
115 if isinstance(a, str):
116 a = a.encode("utf8")
117 a = int(_hexlify(a), 16)
118
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000119 super().seed(a)
Tim Peters46c04e12002-05-05 20:40:00 +0000120 self.gauss_next = None
121
Tim Peterscd804102001-01-25 20:25:57 +0000122 def getstate(self):
123 """Return internal state; can be passed to setstate() later."""
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000124 return self.VERSION, super().getstate(), self.gauss_next
Tim Peterscd804102001-01-25 20:25:57 +0000125
126 def setstate(self, state):
127 """Restore internal state from object returned by getstate()."""
128 version = state[0]
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000129 if version == 3:
Raymond Hettinger40f62172002-12-29 23:03:38 +0000130 version, internalstate, self.gauss_next = state
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000131 super().setstate(internalstate)
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000132 elif version == 2:
133 version, internalstate, self.gauss_next = state
134 # In version 2, the state was saved as signed ints, which causes
135 # inconsistencies between 32/64-bit systems. The state is
136 # really unsigned 32-bit ints, so we convert negative ints from
137 # version 2 to positive longs for version 3.
138 try:
Raymond Hettingerc585eec2010-09-07 15:00:15 +0000139 internalstate = tuple(x % (2**32) for x in internalstate)
Christian Heimescbf3b5c2007-12-03 21:02:03 +0000140 except ValueError as e:
141 raise TypeError from e
142 super(Random, self).setstate(internalstate)
Tim Peterscd804102001-01-25 20:25:57 +0000143 else:
144 raise ValueError("state with version %s passed to "
145 "Random.setstate() of version %s" %
146 (version, self.VERSION))
147
Tim Peterscd804102001-01-25 20:25:57 +0000148## ---- Methods below this point do not need to be overridden when
149## ---- subclassing for the purpose of using a different core generator.
150
151## -------------------- pickle support -------------------
152
153 def __getstate__(self): # for pickle
154 return self.getstate()
155
156 def __setstate__(self, state): # for pickle
157 self.setstate(state)
158
Raymond Hettinger5f078ff2003-06-24 20:29:04 +0000159 def __reduce__(self):
160 return self.__class__, (), self.getstate()
161
Tim Peterscd804102001-01-25 20:25:57 +0000162## -------------------- integer methods -------------------
163
Raymond Hettinger05156612010-09-07 04:44:52 +0000164 def randrange(self, start, stop=None, step=1, int=int):
Tim Petersd7b5e882001-01-25 03:36:26 +0000165 """Choose a random item from range(start, stop[, step]).
166
167 This fixes the problem with randint() which includes the
168 endpoint; in Python this is usually not what you want.
Raymond Hettinger3051cc32010-09-07 00:48:40 +0000169
Raymond Hettingerc3246972010-09-07 09:32:57 +0000170 Do not supply the 'int' argument.
Tim Petersd7b5e882001-01-25 03:36:26 +0000171 """
172
173 # This code is a bit messy to make it fast for the
Tim Peters9146f272002-08-16 03:41:39 +0000174 # common case while still doing adequate error checking.
Tim Petersd7b5e882001-01-25 03:36:26 +0000175 istart = int(start)
176 if istart != start:
Collin Winterce36ad82007-08-30 01:19:48 +0000177 raise ValueError("non-integer arg 1 for randrange()")
Raymond Hettinger3051cc32010-09-07 00:48:40 +0000178 if stop is None:
Tim Petersd7b5e882001-01-25 03:36:26 +0000179 if istart > 0:
Raymond Hettinger05156612010-09-07 04:44:52 +0000180 return self._randbelow(istart)
Collin Winterce36ad82007-08-30 01:19:48 +0000181 raise ValueError("empty range for randrange()")
Tim Peters9146f272002-08-16 03:41:39 +0000182
183 # stop argument supplied.
Tim Petersd7b5e882001-01-25 03:36:26 +0000184 istop = int(stop)
185 if istop != stop:
Collin Winterce36ad82007-08-30 01:19:48 +0000186 raise ValueError("non-integer stop for randrange()")
Raymond Hettinger2f726e92003-10-05 09:09:15 +0000187 width = istop - istart
188 if step == 1 and width > 0:
Raymond Hettingerc3246972010-09-07 09:32:57 +0000189 return istart + self._randbelow(width)
Tim Petersd7b5e882001-01-25 03:36:26 +0000190 if step == 1:
Collin Winterce36ad82007-08-30 01:19:48 +0000191 raise ValueError("empty range for randrange() (%d,%d, %d)" % (istart, istop, width))
Tim Peters9146f272002-08-16 03:41:39 +0000192
193 # Non-unit step argument supplied.
Tim Petersd7b5e882001-01-25 03:36:26 +0000194 istep = int(step)
195 if istep != step:
Collin Winterce36ad82007-08-30 01:19:48 +0000196 raise ValueError("non-integer step for randrange()")
Tim Petersd7b5e882001-01-25 03:36:26 +0000197 if istep > 0:
Raymond Hettingerffdb8bb2004-09-27 15:29:05 +0000198 n = (width + istep - 1) // istep
Tim Petersd7b5e882001-01-25 03:36:26 +0000199 elif istep < 0:
Raymond Hettingerffdb8bb2004-09-27 15:29:05 +0000200 n = (width + istep + 1) // istep
Tim Petersd7b5e882001-01-25 03:36:26 +0000201 else:
Collin Winterce36ad82007-08-30 01:19:48 +0000202 raise ValueError("zero step for randrange()")
Tim Petersd7b5e882001-01-25 03:36:26 +0000203
204 if n <= 0:
Collin Winterce36ad82007-08-30 01:19:48 +0000205 raise ValueError("empty range for randrange()")
Raymond Hettinger2f726e92003-10-05 09:09:15 +0000206
Raymond Hettinger05156612010-09-07 04:44:52 +0000207 return istart + istep*self._randbelow(n)
Tim Petersd7b5e882001-01-25 03:36:26 +0000208
209 def randint(self, a, b):
Tim Peterscd804102001-01-25 20:25:57 +0000210 """Return random integer in range [a, b], including both end points.
Tim Petersd7b5e882001-01-25 03:36:26 +0000211 """
212
213 return self.randrange(a, b+1)
214
Raymond Hettinger05a505f2010-09-07 19:19:33 +0000215 def _randbelow(self, n, int=int, bpf=BPF, type=type,
216 Method=_MethodType, BuiltinMethod=_BuiltinMethodType):
Raymond Hettingerc585eec2010-09-07 15:00:15 +0000217 """Return a random int in the range [0,n). Raises ValueError if n==0.
Raymond Hettinger2f726e92003-10-05 09:09:15 +0000218 """
219
Raymond Hettinger05a505f2010-09-07 19:19:33 +0000220 k = n.bit_length() # don't use (n-1) here because n can be 1
Raymond Hettingerc3246972010-09-07 09:32:57 +0000221 getrandbits = self.getrandbits
222 # Only call self.getrandbits if the original random() builtin method
223 # has not been overridden or if a new getrandbits() was supplied.
Raymond Hettinger05a505f2010-09-07 19:19:33 +0000224 if type(self.random) is BuiltinMethod or type(getrandbits) is Method:
Raymond Hettingerf015b3f2010-09-07 20:04:42 +0000225 r = getrandbits(k) # 0 <= r < 2**k
Raymond Hettingerc3246972010-09-07 09:32:57 +0000226 while r >= n:
227 r = getrandbits(k)
228 return r
Raymond Hettinger05a505f2010-09-07 19:19:33 +0000229 # There's an overriden random() method but no new getrandbits() method,
230 # so we can only use random() from here.
231 if k > bpf:
Raymond Hettinger2f726e92003-10-05 09:09:15 +0000232 _warn("Underlying random() generator does not supply \n"
Raymond Hettingerf015b3f2010-09-07 20:04:42 +0000233 "enough bits to choose from a population range this large.\n"
234 "To remove the range limitation, add a getrandbits() method.")
Raymond Hettinger05a505f2010-09-07 19:19:33 +0000235 return int(self.random() * n)
236 random = self.random
237 N = 1 << k
Raymond Hettingerf015b3f2010-09-07 20:04:42 +0000238 r = int(N * random()) # 0 <= r < 2**k
Raymond Hettinger05a505f2010-09-07 19:19:33 +0000239 while r >= n:
240 r = int(N * random())
241 return r
Raymond Hettinger2f726e92003-10-05 09:09:15 +0000242
Tim Peterscd804102001-01-25 20:25:57 +0000243## -------------------- sequence methods -------------------
244
Tim Petersd7b5e882001-01-25 03:36:26 +0000245 def choice(self, seq):
246 """Choose a random element from a non-empty sequence."""
Raymond Hettingerdc4872e2010-09-07 10:06:56 +0000247 try:
248 i = self._randbelow(len(seq))
249 except ValueError:
250 raise IndexError('Cannot choose from an empty sequence')
251 return seq[i]
Tim Petersd7b5e882001-01-25 03:36:26 +0000252
253 def shuffle(self, x, random=None, int=int):
254 """x, random=random.random -> shuffle list x in place; return None.
255
256 Optional arg random is a 0-argument function returning a random
257 float in [0.0, 1.0); by default, the standard random.random.
Tim Petersd7b5e882001-01-25 03:36:26 +0000258 """
259
Raymond Hettinger05a505f2010-09-07 19:19:33 +0000260 randbelow = self._randbelow
261 for i in reversed(range(1, len(x))):
262 # pick an element in x[:i+1] with which to exchange x[i]
263 j = randbelow(i+1) if random is None else int(random() * (i+1))
264 x[i], x[j] = x[j], x[i]
Tim Petersd7b5e882001-01-25 03:36:26 +0000265
Raymond Hettingerfdbe5222003-06-13 07:01:51 +0000266 def sample(self, population, k):
Raymond Hettinger1acde192008-01-14 01:00:53 +0000267 """Chooses k unique random elements from a population sequence or set.
Raymond Hettingerf24eb352002-11-12 17:41:57 +0000268
Raymond Hettingerc0b40342002-11-13 15:26:37 +0000269 Returns a new list containing elements from the population while
270 leaving the original population unchanged. The resulting list is
271 in selection order so that all sub-slices will also be valid random
272 samples. This allows raffle winners (the sample) to be partitioned
273 into grand prize and second place winners (the subslices).
Raymond Hettingerf24eb352002-11-12 17:41:57 +0000274
Raymond Hettingerc0b40342002-11-13 15:26:37 +0000275 Members of the population need not be hashable or unique. If the
276 population contains repeats, then each occurrence is a possible
277 selection in the sample.
Raymond Hettingerf24eb352002-11-12 17:41:57 +0000278
Guido van Rossum805365e2007-05-07 22:24:25 +0000279 To choose a sample in a range of integers, use range as an argument.
Raymond Hettingerc0b40342002-11-13 15:26:37 +0000280 This is especially fast and space efficient for sampling from a
Guido van Rossum805365e2007-05-07 22:24:25 +0000281 large population: sample(range(10000000), 60)
Raymond Hettingerf24eb352002-11-12 17:41:57 +0000282 """
283
Raymond Hettingerc0b40342002-11-13 15:26:37 +0000284 # Sampling without replacement entails tracking either potential
Raymond Hettinger91e27c22005-08-19 01:36:35 +0000285 # selections (the pool) in a list or previous selections in a set.
Raymond Hettingerc0b40342002-11-13 15:26:37 +0000286
Jeremy Hylton2b55d352004-02-23 17:27:57 +0000287 # When the number of selections is small compared to the
288 # population, then tracking selections is efficient, requiring
Raymond Hettinger91e27c22005-08-19 01:36:35 +0000289 # only a small set and an occasional reselection. For
Jeremy Hylton2b55d352004-02-23 17:27:57 +0000290 # a larger number of selections, the pool tracking method is
291 # preferred since the list takes less space than the
Raymond Hettinger91e27c22005-08-19 01:36:35 +0000292 # set and it doesn't suffer from frequent reselections.
Raymond Hettingerc0b40342002-11-13 15:26:37 +0000293
Raymond Hettinger886687d2009-02-24 11:27:15 +0000294 if isinstance(population, _collections.Set):
Raymond Hettinger1acde192008-01-14 01:00:53 +0000295 population = tuple(population)
Raymond Hettinger886687d2009-02-24 11:27:15 +0000296 if not isinstance(population, _collections.Sequence):
297 raise TypeError("Population must be a sequence or Set. For dicts, use list(d).")
Raymond Hettinger05a505f2010-09-07 19:19:33 +0000298 randbelow = self._randbelow
Raymond Hettingerf24eb352002-11-12 17:41:57 +0000299 n = len(population)
300 if not 0 <= k <= n:
Raymond Hettinger1acde192008-01-14 01:00:53 +0000301 raise ValueError("Sample larger than population")
Raymond Hettingerc0b40342002-11-13 15:26:37 +0000302 result = [None] * k
Raymond Hettinger91e27c22005-08-19 01:36:35 +0000303 setsize = 21 # size of a small set minus size of an empty list
304 if k > 5:
Tim Peters9e34c042005-08-26 15:20:46 +0000305 setsize += 4 ** _ceil(_log(k * 3, 4)) # table size for big sets
Raymond Hettinger1acde192008-01-14 01:00:53 +0000306 if n <= setsize:
307 # An n-length list is smaller than a k-length set
Raymond Hettinger311f4192002-11-18 09:01:24 +0000308 pool = list(population)
Guido van Rossum805365e2007-05-07 22:24:25 +0000309 for i in range(k): # invariant: non-selected at [0,n-i)
Raymond Hettinger05a505f2010-09-07 19:19:33 +0000310 j = randbelow(n-i)
Raymond Hettinger311f4192002-11-18 09:01:24 +0000311 result[i] = pool[j]
Raymond Hettinger8b9aa8d2003-01-04 05:20:33 +0000312 pool[j] = pool[n-i-1] # move non-selected item into vacancy
Raymond Hettingerc0b40342002-11-13 15:26:37 +0000313 else:
Raymond Hettinger1acde192008-01-14 01:00:53 +0000314 selected = set()
315 selected_add = selected.add
316 for i in range(k):
Raymond Hettinger05a505f2010-09-07 19:19:33 +0000317 j = randbelow(n)
Raymond Hettinger1acde192008-01-14 01:00:53 +0000318 while j in selected:
Raymond Hettinger05a505f2010-09-07 19:19:33 +0000319 j = randbelow(n)
Raymond Hettinger1acde192008-01-14 01:00:53 +0000320 selected_add(j)
321 result[i] = population[j]
Raymond Hettinger311f4192002-11-18 09:01:24 +0000322 return result
Raymond Hettingerf24eb352002-11-12 17:41:57 +0000323
Tim Peterscd804102001-01-25 20:25:57 +0000324## -------------------- real-valued distributions -------------------
325
326## -------------------- uniform distribution -------------------
Tim Petersd7b5e882001-01-25 03:36:26 +0000327
328 def uniform(self, a, b):
Raymond Hettingerbe40db02009-06-11 23:12:14 +0000329 "Get a random number in the range [a, b) or [a, b] depending on rounding."
Tim Petersd7b5e882001-01-25 03:36:26 +0000330 return a + (b-a) * self.random()
Guido van Rossumff03b1a1994-03-09 12:55:02 +0000331
Christian Heimesfe337bf2008-03-23 21:54:12 +0000332## -------------------- triangular --------------------
333
334 def triangular(self, low=0.0, high=1.0, mode=None):
335 """Triangular distribution.
336
337 Continuous distribution bounded by given lower and upper limits,
338 and having a given mode value in-between.
339
340 http://en.wikipedia.org/wiki/Triangular_distribution
341
342 """
343 u = self.random()
344 c = 0.5 if mode is None else (mode - low) / (high - low)
345 if u > c:
346 u = 1.0 - u
347 c = 1.0 - c
348 low, high = high, low
349 return low + (high - low) * (u * c) ** 0.5
350
Tim Peterscd804102001-01-25 20:25:57 +0000351## -------------------- normal distribution --------------------
Guido van Rossumff03b1a1994-03-09 12:55:02 +0000352
Tim Petersd7b5e882001-01-25 03:36:26 +0000353 def normalvariate(self, mu, sigma):
Raymond Hettingerc32f0332002-05-23 19:44:49 +0000354 """Normal distribution.
355
356 mu is the mean, and sigma is the standard deviation.
Raymond Hettingeref4d4bd2002-05-23 23:58:17 +0000357
Raymond Hettingerc32f0332002-05-23 19:44:49 +0000358 """
Tim Petersd7b5e882001-01-25 03:36:26 +0000359 # mu = mean, sigma = standard deviation
Guido van Rossumff03b1a1994-03-09 12:55:02 +0000360
Tim Petersd7b5e882001-01-25 03:36:26 +0000361 # Uses Kinderman and Monahan method. Reference: Kinderman,
362 # A.J. and Monahan, J.F., "Computer generation of random
363 # variables using the ratio of uniform deviates", ACM Trans
364 # Math Software, 3, (1977), pp257-260.
Guido van Rossumff03b1a1994-03-09 12:55:02 +0000365
Tim Petersd7b5e882001-01-25 03:36:26 +0000366 random = self.random
Raymond Hettinger42406e62005-04-30 09:02:51 +0000367 while 1:
Tim Peters0c9886d2001-01-15 01:18:21 +0000368 u1 = random()
Raymond Hettinger73ced7e2003-01-04 09:26:32 +0000369 u2 = 1.0 - random()
Tim Petersd7b5e882001-01-25 03:36:26 +0000370 z = NV_MAGICCONST*(u1-0.5)/u2
371 zz = z*z/4.0
372 if zz <= -_log(u2):
373 break
374 return mu + z*sigma
Guido van Rossumff03b1a1994-03-09 12:55:02 +0000375
Tim Peterscd804102001-01-25 20:25:57 +0000376## -------------------- lognormal distribution --------------------
Tim Petersd7b5e882001-01-25 03:36:26 +0000377
378 def lognormvariate(self, mu, sigma):
Raymond Hettingerc32f0332002-05-23 19:44:49 +0000379 """Log normal distribution.
380
381 If you take the natural logarithm of this distribution, you'll get a
382 normal distribution with mean mu and standard deviation sigma.
383 mu can have any value, and sigma must be greater than zero.
Raymond Hettingeref4d4bd2002-05-23 23:58:17 +0000384
Raymond Hettingerc32f0332002-05-23 19:44:49 +0000385 """
Tim Petersd7b5e882001-01-25 03:36:26 +0000386 return _exp(self.normalvariate(mu, sigma))
387
Tim Peterscd804102001-01-25 20:25:57 +0000388## -------------------- exponential distribution --------------------
Tim Petersd7b5e882001-01-25 03:36:26 +0000389
390 def expovariate(self, lambd):
Raymond Hettingerc32f0332002-05-23 19:44:49 +0000391 """Exponential distribution.
392
Mark Dickinson2f947362009-01-07 17:54:07 +0000393 lambd is 1.0 divided by the desired mean. It should be
394 nonzero. (The parameter would be called "lambda", but that is
395 a reserved word in Python.) Returned values range from 0 to
396 positive infinity if lambd is positive, and from negative
397 infinity to 0 if lambd is negative.
Raymond Hettingeref4d4bd2002-05-23 23:58:17 +0000398
Raymond Hettingerc32f0332002-05-23 19:44:49 +0000399 """
Tim Petersd7b5e882001-01-25 03:36:26 +0000400 # lambd: rate lambd = 1/mean
401 # ('lambda' is a Python reserved word)
402
403 random = self.random
Tim Peters0c9886d2001-01-15 01:18:21 +0000404 u = random()
405 while u <= 1e-7:
406 u = random()
Tim Petersd7b5e882001-01-25 03:36:26 +0000407 return -_log(u)/lambd
Guido van Rossumff03b1a1994-03-09 12:55:02 +0000408
Tim Peterscd804102001-01-25 20:25:57 +0000409## -------------------- von Mises distribution --------------------
Guido van Rossumff03b1a1994-03-09 12:55:02 +0000410
Tim Petersd7b5e882001-01-25 03:36:26 +0000411 def vonmisesvariate(self, mu, kappa):
Raymond Hettingerc32f0332002-05-23 19:44:49 +0000412 """Circular data distribution.
Raymond Hettingeref4d4bd2002-05-23 23:58:17 +0000413
Raymond Hettingerc32f0332002-05-23 19:44:49 +0000414 mu is the mean angle, expressed in radians between 0 and 2*pi, and
415 kappa is the concentration parameter, which must be greater than or
416 equal to zero. If kappa is equal to zero, this distribution reduces
417 to a uniform random angle over the range 0 to 2*pi.
Raymond Hettingeref4d4bd2002-05-23 23:58:17 +0000418
Raymond Hettingerc32f0332002-05-23 19:44:49 +0000419 """
Tim Petersd7b5e882001-01-25 03:36:26 +0000420 # mu: mean angle (in radians between 0 and 2*pi)
421 # kappa: concentration parameter kappa (>= 0)
422 # if kappa = 0 generate uniform random angle
423
424 # Based upon an algorithm published in: Fisher, N.I.,
425 # "Statistical Analysis of Circular Data", Cambridge
426 # University Press, 1993.
427
428 # Thanks to Magnus Kessler for a correction to the
429 # implementation of step 4.
430
431 random = self.random
432 if kappa <= 1e-6:
433 return TWOPI * random()
434
435 a = 1.0 + _sqrt(1.0 + 4.0 * kappa * kappa)
436 b = (a - _sqrt(2.0 * a))/(2.0 * kappa)
437 r = (1.0 + b * b)/(2.0 * b)
Guido van Rossumff03b1a1994-03-09 12:55:02 +0000438
Raymond Hettinger42406e62005-04-30 09:02:51 +0000439 while 1:
Tim Peters0c9886d2001-01-15 01:18:21 +0000440 u1 = random()
Tim Petersd7b5e882001-01-25 03:36:26 +0000441
442 z = _cos(_pi * u1)
443 f = (1.0 + r * z)/(r + z)
444 c = kappa * (r - f)
445
446 u2 = random()
447
Raymond Hettinger42406e62005-04-30 09:02:51 +0000448 if u2 < c * (2.0 - c) or u2 <= c * _exp(1.0 - c):
Tim Peters0c9886d2001-01-15 01:18:21 +0000449 break
Tim Petersd7b5e882001-01-25 03:36:26 +0000450
451 u3 = random()
452 if u3 > 0.5:
453 theta = (mu % TWOPI) + _acos(f)
454 else:
455 theta = (mu % TWOPI) - _acos(f)
456
457 return theta
458
Tim Peterscd804102001-01-25 20:25:57 +0000459## -------------------- gamma distribution --------------------
Tim Petersd7b5e882001-01-25 03:36:26 +0000460
461 def gammavariate(self, alpha, beta):
Raymond Hettingerc32f0332002-05-23 19:44:49 +0000462 """Gamma distribution. Not the gamma function!
463
464 Conditions on the parameters are alpha > 0 and beta > 0.
465
466 """
Tim Peters8ac14952002-05-23 15:15:30 +0000467
Raymond Hettingerb760efb2002-05-14 06:40:34 +0000468 # alpha > 0, beta > 0, mean is alpha*beta, variance is alpha*beta**2
Tim Peters8ac14952002-05-23 15:15:30 +0000469
Guido van Rossum570764d2002-05-14 14:08:12 +0000470 # Warning: a few older sources define the gamma distribution in terms
471 # of alpha > -1.0
472 if alpha <= 0.0 or beta <= 0.0:
Collin Winterce36ad82007-08-30 01:19:48 +0000473 raise ValueError('gammavariate: alpha and beta must be > 0.0')
Tim Peters8ac14952002-05-23 15:15:30 +0000474
Tim Petersd7b5e882001-01-25 03:36:26 +0000475 random = self.random
Tim Petersd7b5e882001-01-25 03:36:26 +0000476 if alpha > 1.0:
477
478 # Uses R.C.H. Cheng, "The generation of Gamma
479 # variables with non-integral shape parameters",
480 # Applied Statistics, (1977), 26, No. 1, p71-74
481
Raymond Hettingerca6cdc22002-05-13 23:40:14 +0000482 ainv = _sqrt(2.0 * alpha - 1.0)
483 bbb = alpha - LOG4
484 ccc = alpha + ainv
Tim Peters8ac14952002-05-23 15:15:30 +0000485
Raymond Hettinger42406e62005-04-30 09:02:51 +0000486 while 1:
Tim Petersd7b5e882001-01-25 03:36:26 +0000487 u1 = random()
Raymond Hettinger73ced7e2003-01-04 09:26:32 +0000488 if not 1e-7 < u1 < .9999999:
489 continue
490 u2 = 1.0 - random()
Tim Petersd7b5e882001-01-25 03:36:26 +0000491 v = _log(u1/(1.0-u1))/ainv
492 x = alpha*_exp(v)
493 z = u1*u1*u2
494 r = bbb+ccc*v-x
495 if r + SG_MAGICCONST - 4.5*z >= 0.0 or r >= _log(z):
Raymond Hettingerb760efb2002-05-14 06:40:34 +0000496 return x * beta
Tim Petersd7b5e882001-01-25 03:36:26 +0000497
498 elif alpha == 1.0:
499 # expovariate(1)
500 u = random()
501 while u <= 1e-7:
502 u = random()
Raymond Hettingerb760efb2002-05-14 06:40:34 +0000503 return -_log(u) * beta
Tim Petersd7b5e882001-01-25 03:36:26 +0000504
505 else: # alpha is between 0 and 1 (exclusive)
506
507 # Uses ALGORITHM GS of Statistical Computing - Kennedy & Gentle
508
Raymond Hettinger42406e62005-04-30 09:02:51 +0000509 while 1:
Tim Petersd7b5e882001-01-25 03:36:26 +0000510 u = random()
511 b = (_e + alpha)/_e
512 p = b*u
513 if p <= 1.0:
Raymond Hettinger42406e62005-04-30 09:02:51 +0000514 x = p ** (1.0/alpha)
Tim Petersd7b5e882001-01-25 03:36:26 +0000515 else:
Tim Petersd7b5e882001-01-25 03:36:26 +0000516 x = -_log((b-p)/alpha)
517 u1 = random()
Raymond Hettinger42406e62005-04-30 09:02:51 +0000518 if p > 1.0:
519 if u1 <= x ** (alpha - 1.0):
520 break
521 elif u1 <= _exp(-x):
Tim Petersd7b5e882001-01-25 03:36:26 +0000522 break
Raymond Hettingerb760efb2002-05-14 06:40:34 +0000523 return x * beta
524
Tim Peterscd804102001-01-25 20:25:57 +0000525## -------------------- Gauss (faster alternative) --------------------
Guido van Rossum95bfcda1994-03-09 14:21:05 +0000526
Tim Petersd7b5e882001-01-25 03:36:26 +0000527 def gauss(self, mu, sigma):
Raymond Hettingerc32f0332002-05-23 19:44:49 +0000528 """Gaussian distribution.
529
530 mu is the mean, and sigma is the standard deviation. This is
531 slightly faster than the normalvariate() function.
532
533 Not thread-safe without a lock around calls.
Raymond Hettingeref4d4bd2002-05-23 23:58:17 +0000534
Raymond Hettingerc32f0332002-05-23 19:44:49 +0000535 """
Guido van Rossumcc32ac91994-03-15 16:10:24 +0000536
Tim Petersd7b5e882001-01-25 03:36:26 +0000537 # When x and y are two variables from [0, 1), uniformly
538 # distributed, then
539 #
540 # cos(2*pi*x)*sqrt(-2*log(1-y))
541 # sin(2*pi*x)*sqrt(-2*log(1-y))
542 #
543 # are two *independent* variables with normal distribution
544 # (mu = 0, sigma = 1).
545 # (Lambert Meertens)
546 # (corrected version; bug discovered by Mike Miller, fixed by LM)
Guido van Rossumcc32ac91994-03-15 16:10:24 +0000547
Tim Petersd7b5e882001-01-25 03:36:26 +0000548 # Multithreading note: When two threads call this function
549 # simultaneously, it is possible that they will receive the
550 # same return value. The window is very small though. To
551 # avoid this, you have to use a lock around all calls. (I
552 # didn't want to slow this down in the serial case by using a
553 # lock here.)
Guido van Rossumd03e1191998-05-29 17:51:31 +0000554
Tim Petersd7b5e882001-01-25 03:36:26 +0000555 random = self.random
556 z = self.gauss_next
557 self.gauss_next = None
558 if z is None:
559 x2pi = random() * TWOPI
560 g2rad = _sqrt(-2.0 * _log(1.0 - random()))
561 z = _cos(x2pi) * g2rad
562 self.gauss_next = _sin(x2pi) * g2rad
Guido van Rossumcc32ac91994-03-15 16:10:24 +0000563
Tim Petersd7b5e882001-01-25 03:36:26 +0000564 return mu + z*sigma
Guido van Rossum95bfcda1994-03-09 14:21:05 +0000565
Tim Peterscd804102001-01-25 20:25:57 +0000566## -------------------- beta --------------------
Tim Peters85e2e472001-01-26 06:49:56 +0000567## See
568## http://sourceforge.net/bugs/?func=detailbug&bug_id=130030&group_id=5470
569## for Ivan Frohne's insightful analysis of why the original implementation:
570##
571## def betavariate(self, alpha, beta):
572## # Discrete Event Simulation in C, pp 87-88.
573##
574## y = self.expovariate(alpha)
575## z = self.expovariate(1.0/beta)
576## return z/(y+z)
577##
578## was dead wrong, and how it probably got that way.
Guido van Rossum95bfcda1994-03-09 14:21:05 +0000579
Tim Petersd7b5e882001-01-25 03:36:26 +0000580 def betavariate(self, alpha, beta):
Raymond Hettingerc32f0332002-05-23 19:44:49 +0000581 """Beta distribution.
582
Thomas Woutersb2137042007-02-01 18:02:27 +0000583 Conditions on the parameters are alpha > 0 and beta > 0.
Raymond Hettingerc32f0332002-05-23 19:44:49 +0000584 Returned values range between 0 and 1.
Raymond Hettingeref4d4bd2002-05-23 23:58:17 +0000585
Raymond Hettingerc32f0332002-05-23 19:44:49 +0000586 """
Raymond Hettingeref4d4bd2002-05-23 23:58:17 +0000587
Tim Peters85e2e472001-01-26 06:49:56 +0000588 # This version due to Janne Sinkkonen, and matches all the std
589 # texts (e.g., Knuth Vol 2 Ed 3 pg 134 "the beta distribution").
590 y = self.gammavariate(alpha, 1.)
591 if y == 0:
592 return 0.0
593 else:
594 return y / (y + self.gammavariate(beta, 1.))
Guido van Rossum95bfcda1994-03-09 14:21:05 +0000595
Tim Peterscd804102001-01-25 20:25:57 +0000596## -------------------- Pareto --------------------
Guido van Rossumcf4559a1997-12-02 02:47:39 +0000597
Tim Petersd7b5e882001-01-25 03:36:26 +0000598 def paretovariate(self, alpha):
Raymond Hettingerc32f0332002-05-23 19:44:49 +0000599 """Pareto distribution. alpha is the shape parameter."""
Tim Petersd7b5e882001-01-25 03:36:26 +0000600 # Jain, pg. 495
Guido van Rossumcf4559a1997-12-02 02:47:39 +0000601
Raymond Hettinger73ced7e2003-01-04 09:26:32 +0000602 u = 1.0 - self.random()
Tim Petersd7b5e882001-01-25 03:36:26 +0000603 return 1.0 / pow(u, 1.0/alpha)
Guido van Rossumcf4559a1997-12-02 02:47:39 +0000604
Tim Peterscd804102001-01-25 20:25:57 +0000605## -------------------- Weibull --------------------
Guido van Rossumcf4559a1997-12-02 02:47:39 +0000606
Tim Petersd7b5e882001-01-25 03:36:26 +0000607 def weibullvariate(self, alpha, beta):
Raymond Hettingerc32f0332002-05-23 19:44:49 +0000608 """Weibull distribution.
609
610 alpha is the scale parameter and beta is the shape parameter.
Raymond Hettingeref4d4bd2002-05-23 23:58:17 +0000611
Raymond Hettingerc32f0332002-05-23 19:44:49 +0000612 """
Tim Petersd7b5e882001-01-25 03:36:26 +0000613 # Jain, pg. 499; bug fix courtesy Bill Arms
Guido van Rossumcf4559a1997-12-02 02:47:39 +0000614
Raymond Hettinger73ced7e2003-01-04 09:26:32 +0000615 u = 1.0 - self.random()
Tim Petersd7b5e882001-01-25 03:36:26 +0000616 return alpha * pow(-_log(u), 1.0/beta)
Guido van Rossum6c395ba1999-08-18 13:53:28 +0000617
Raymond Hettinger23f12412004-09-13 22:23:21 +0000618## --------------- Operating System Random Source ------------------
Raymond Hettinger356a4592004-08-30 06:14:31 +0000619
Raymond Hettinger23f12412004-09-13 22:23:21 +0000620class SystemRandom(Random):
621 """Alternate random number generator using sources provided
622 by the operating system (such as /dev/urandom on Unix or
623 CryptGenRandom on Windows).
Raymond Hettinger356a4592004-08-30 06:14:31 +0000624
625 Not available on all systems (see os.urandom() for details).
626 """
627
628 def random(self):
629 """Get the next random number in the range [0.0, 1.0)."""
Guido van Rossume2a383d2007-01-15 16:59:06 +0000630 return (int(_hexlify(_urandom(7)), 16) >> 3) * RECIP_BPF
Raymond Hettinger356a4592004-08-30 06:14:31 +0000631
632 def getrandbits(self, k):
633 """getrandbits(k) -> x. Generates a long int with k random bits."""
Raymond Hettinger356a4592004-08-30 06:14:31 +0000634 if k <= 0:
635 raise ValueError('number of bits must be greater than zero')
636 if k != int(k):
637 raise TypeError('number of bits should be an integer')
638 bytes = (k + 7) // 8 # bits / 8 and rounded up
Guido van Rossume2a383d2007-01-15 16:59:06 +0000639 x = int(_hexlify(_urandom(bytes)), 16)
Raymond Hettinger356a4592004-08-30 06:14:31 +0000640 return x >> (bytes * 8 - k) # trim excess bits
641
Raymond Hettinger28de64f2008-01-13 23:40:30 +0000642 def seed(self, *args, **kwds):
Raymond Hettinger23f12412004-09-13 22:23:21 +0000643 "Stub method. Not used for a system random number generator."
Raymond Hettinger356a4592004-08-30 06:14:31 +0000644 return None
Raymond Hettinger356a4592004-08-30 06:14:31 +0000645
646 def _notimplemented(self, *args, **kwds):
Raymond Hettinger23f12412004-09-13 22:23:21 +0000647 "Method should not be called for a system random number generator."
648 raise NotImplementedError('System entropy source does not have state.')
Raymond Hettinger356a4592004-08-30 06:14:31 +0000649 getstate = setstate = _notimplemented
650
Tim Peterscd804102001-01-25 20:25:57 +0000651## -------------------- test program --------------------
Guido van Rossumff03b1a1994-03-09 12:55:02 +0000652
Raymond Hettinger62297132003-08-30 01:24:19 +0000653def _test_generator(n, func, args):
Tim Peters0c9886d2001-01-15 01:18:21 +0000654 import time
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000655 print(n, 'times', func.__name__)
Raymond Hettingerb98154e2003-05-24 17:26:02 +0000656 total = 0.0
Tim Peters0c9886d2001-01-15 01:18:21 +0000657 sqsum = 0.0
658 smallest = 1e10
659 largest = -1e10
660 t0 = time.time()
661 for i in range(n):
Raymond Hettinger62297132003-08-30 01:24:19 +0000662 x = func(*args)
Raymond Hettingerb98154e2003-05-24 17:26:02 +0000663 total += x
Tim Peters0c9886d2001-01-15 01:18:21 +0000664 sqsum = sqsum + x*x
665 smallest = min(x, smallest)
666 largest = max(x, largest)
667 t1 = time.time()
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000668 print(round(t1-t0, 3), 'sec,', end=' ')
Raymond Hettingerb98154e2003-05-24 17:26:02 +0000669 avg = total/n
Tim Petersd7b5e882001-01-25 03:36:26 +0000670 stddev = _sqrt(sqsum/n - avg*avg)
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000671 print('avg %g, stddev %g, min %g, max %g' % \
672 (avg, stddev, smallest, largest))
Guido van Rossumff03b1a1994-03-09 12:55:02 +0000673
Raymond Hettingerf24eb352002-11-12 17:41:57 +0000674
675def _test(N=2000):
Raymond Hettinger62297132003-08-30 01:24:19 +0000676 _test_generator(N, random, ())
677 _test_generator(N, normalvariate, (0.0, 1.0))
678 _test_generator(N, lognormvariate, (0.0, 1.0))
679 _test_generator(N, vonmisesvariate, (0.0, 1.0))
680 _test_generator(N, gammavariate, (0.01, 1.0))
681 _test_generator(N, gammavariate, (0.1, 1.0))
682 _test_generator(N, gammavariate, (0.1, 2.0))
683 _test_generator(N, gammavariate, (0.5, 1.0))
684 _test_generator(N, gammavariate, (0.9, 1.0))
685 _test_generator(N, gammavariate, (1.0, 1.0))
686 _test_generator(N, gammavariate, (2.0, 1.0))
687 _test_generator(N, gammavariate, (20.0, 1.0))
688 _test_generator(N, gammavariate, (200.0, 1.0))
689 _test_generator(N, gauss, (0.0, 1.0))
690 _test_generator(N, betavariate, (3.0, 3.0))
Christian Heimesfe337bf2008-03-23 21:54:12 +0000691 _test_generator(N, triangular, (0.0, 1.0, 1.0/3.0))
Tim Peterscd804102001-01-25 20:25:57 +0000692
Tim Peters715c4c42001-01-26 22:56:56 +0000693# Create one instance, seeded from current time, and export its methods
Raymond Hettinger40f62172002-12-29 23:03:38 +0000694# as module-level functions. The functions share state across all uses
695#(both in the user's code and in the Python libraries), but that's fine
696# for most programs and is easier for the casual user than making them
697# instantiate their own Random() instance.
698
Tim Petersd7b5e882001-01-25 03:36:26 +0000699_inst = Random()
700seed = _inst.seed
701random = _inst.random
702uniform = _inst.uniform
Christian Heimesfe337bf2008-03-23 21:54:12 +0000703triangular = _inst.triangular
Tim Petersd7b5e882001-01-25 03:36:26 +0000704randint = _inst.randint
705choice = _inst.choice
706randrange = _inst.randrange
Raymond Hettingerf24eb352002-11-12 17:41:57 +0000707sample = _inst.sample
Tim Petersd7b5e882001-01-25 03:36:26 +0000708shuffle = _inst.shuffle
709normalvariate = _inst.normalvariate
710lognormvariate = _inst.lognormvariate
Tim Petersd7b5e882001-01-25 03:36:26 +0000711expovariate = _inst.expovariate
712vonmisesvariate = _inst.vonmisesvariate
713gammavariate = _inst.gammavariate
Tim Petersd7b5e882001-01-25 03:36:26 +0000714gauss = _inst.gauss
715betavariate = _inst.betavariate
716paretovariate = _inst.paretovariate
717weibullvariate = _inst.weibullvariate
718getstate = _inst.getstate
719setstate = _inst.setstate
Raymond Hettinger2f726e92003-10-05 09:09:15 +0000720getrandbits = _inst.getrandbits
Tim Petersd7b5e882001-01-25 03:36:26 +0000721
Guido van Rossumff03b1a1994-03-09 12:55:02 +0000722if __name__ == '__main__':
Tim Petersd7b5e882001-01-25 03:36:26 +0000723 _test()