本文介绍了为什么我在Python中用random.shuffle弄傻了?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

对于10个整数的列表,有10个!可能的顺序或排列.为什么只有5000次尝试后random.shuffle才会重复?

For a list of 10 ints, there are 10! possible orders or permutations. Why does random.shuffle give duplicates after only 5000 tries?

>>> L = range(10)
>>> rL = list()
>>> for i in range(5000):
...     random.shuffle(L)
...     rL.append(L[:])
...
>>> rL = [tuple(e) for e in rL]
>>> len(set(rL))
4997
>>> for i,t in enumerate(rL):
...     if rL.count(t) > 1:
...         print i,t
...
102 (7, 5, 2, 4, 0, 6, 9, 3, 1, 8)
258 (1, 4, 0, 2, 7, 3, 5, 9, 6, 8)
892 (1, 4, 0, 2, 7, 3, 5, 9, 6, 8)
2878 (7, 5, 2, 4, 0, 6, 9, 3, 1, 8)
4123 (5, 8, 0, 1, 7, 3, 2, 4, 6, 9)
4633 (5, 8, 0, 1, 7, 3, 2, 4, 6, 9)
>>> 10*9*8*7*6*5*4*3*2
3628800
>>> 2**19937 - 1
431542479738816264805523551633791983905393 [snip]

>>> L = list()
>>> for i in range(5000):
...     L.append(random.choice(xrange(3628800)))
...
>>> len(set(L))
4997

FWIW,如果单个对不具有两个相同的概率为:p =(10!-1)/10!组合数为:C = 5000!/4998! * 2! = 5000 * 4999/2那么重复的概率为:

FWIW, if the probability of not having two the same for a single pair is:p = (10! - 1) / 10!and the number of combinations is:C = 5000! / 4998! * 2! = 5000 * 4999 / 2then the probability of having a duplicate is:

>>> import math
>>> f = math.factorial(10)
>>> p = 1.0*(f-1)/f
>>> C = 5000.0*4999/2
>>> 1 - p**C
0.96806256495611798

推荐答案

它称为生日悖论.

根据维基百科的以下公式:

According to this formula from Wikipedia:

,但是用10!替换365,您仅需要大约2200个示例,就有50%的机会发生碰撞,而您已经远远超过了.

but replacing 365 with 10! you would only need about 2200 examples to have a 50% chance of a collision, and you are way above that.

这篇关于为什么我在Python中用random.shuffle弄傻了?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 16:41