使用 NProbability[] 或 Probability[] 计算 4 次抛硬币中出现 3 个或更多正面的概率
是否可以使用 Probability 或 NProbability 函数计算 4 次抛硬币中出现 3 个或更多正面的概率。
这不是一个关于这个问题的简单答案的问题,更多的是了解如何使用分布用 Mathematica 解决此类问题。
因此,使用分布 P 中的 4 个随机变量,
我希望这样的方法能够达到目的,但它不起作用。我得到 0。
P = BernoulliDistribution[0.5];
vars = List[Distributed[a,P],Distributed[b,P],Distributed[c,P],Distributed[c,P]];
NProbability[Count[ {a,b,c,d}, 1] >= 3, vars]
任何想法将不胜感激。
Is it possible to work out the probability of 3 or more Head from 4 coin tosses using the Probability or NProbability functions.
This is not a question about the trivial answer to this problem, it is more to get an understanding of how to solve this kind of problem with Mathematica using distributions.
So using 4 random variables from Distribution P
I was hoping something like this would do the trick, but it does not work. I get 0.
P = BernoulliDistribution[0.5];
vars = List[Distributed[a,P],Distributed[b,P],Distributed[c,P],Distributed[c,P]];
NProbability[Count[ {a,b,c,d}, 1] >= 3, vars]
Any ideas would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不是这里使用 Mma 进行统计的专家,但这似乎有效:
Not an expert using Mma for statistics here, but this seems to work:
使用 BinomialDistribution 更容易描述硬币翻转:
Coin flipping is easier described with a BinomialDistribution: