Re: [问卦] 13颗骰子要骰几次才可以累积到13000点

楼主: abc2090614 (casperxdd)   2017-12-26 01:12:16
※ 引述《grapherd (NULL)》之铭言:
: ※ 引述《p2p8ppp (给我钱)》之铭言:
: : https://imgur.com/7cLC5iT
: : 初学者来ㄌ
: : 我模拟1000次就跑好久
: : 是因为我用13颗骰子慢慢骰吗?
: : 接下来要弄次数分配怎么写啊= =
: from collections import defaultdict
: dd = defaultdict(int)
: # 每次 result 直接放入 dd
: dd[result] += 1
: print(dd) # 次数分配结果
: 然后,已经 2017 年了,快改用 python 3 好吗,别再用 2 了。
: : 不奢望画图了= =
: pyplot 或是 matplotlib 都能够做到,加油,好吗?
Python 模拟一万次出来也是一样欧
https://i.imgur.com/2HjGhzA.png
不过这个有掉到280次以下的
# python3
import numpy as np
import seaborn as sns
def roll_die():
points_total = 0
cutoff = 0
while points_total < 13000:
points_total += np.sum(np.random.randint(1, 7, 13))
cutoff += 1
return cutoff
results = np.array([roll_die() for i in range(10000)])
sns.distplot(results, kde=False)
作者: ANiZan9991 (门务司)   2016-12-26 01:12:00
我闻到臭味
作者: cena0605 (姜西拿)   2016-12-26 01:12:00
我看不懂
作者: em4 (通通去吃宝路啦><)   2017-12-26 01:13:00
常态分布欸
作者: jim66356 (摇尾巴)   2017-12-26 01:13:00
你真的有够无聊的
作者: tkufc (阿东)   2017-12-26 01:14:00
作者: zxasqw0246 (yoyo)   2017-12-26 01:31:00
说不定拍森的乱数表刚好是常态分布阿
作者: Plot3D (3D做图)   2017-12-26 01:37:00
XDDDDDDDDD

Links booklink

Contact Us: admin [ a t ] ucptt.com