概率练习

这篇博客通过模拟掷硬币和骰子,探讨了不同情况下的概率问题,包括两次掷硬币出现两次正面、三次掷硬币出现一次正面以及掷骰子出现偶数和相同值的概率。并邀请读者对比模拟结果与理论概率。
摘要由CSDN通过智能技术生成

概率练习

在这个练习中,你将模拟掷硬币和掷骰子,计算下列结果的比例。

  1. 两次均衡掷硬币得到两次正面
  2. 三次均衡掷硬币得到一次正面
  3. P(H) = 0.6 时三次非均衡掷硬币得到一次正面
  4. 一次掷骰子得到偶数
  5. 两次掷骰子得到相同值

然后,你在下面的练习中对比这些比例的概率。

模拟掷硬币时,0 代表正面,1 代表反面。模拟掷骰子时,使用正确的整数,匹配标准六面骰子上的数字。

Coin Flips and Die Rolls¶
Use NumPy to create simulations and compute proportions for the following outcomes. The first one is done for you.


port numpy as np
# import numpy
import numpy as np
1. Two fair coin flips produce exactly two heads

# simulate 1 million tests of two fair coin flips
tests = np.random.randint(2, size=(int(1e6), 2))

# sums of all tests
# simulate 1 million tests of two fair coin flips
tests = np.random.randint(2, size=(int(1e6), 2))
​
# sums of all tests
test_sums = tests.sum(axis=1)
​
# proportion of tests that produced exactly two heads
(test_sums == 0).mean(
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值