TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Dreidel Expected Value?

1 点作者 Yawrehto5 个月前
I was wondering abiut the expected value of a game of dreidel.<p>For those unfamiliar with the game, it&#x27;s very simple. It&#x27;s a turn-taking game where players get one of four equally likely outcomes: nothing happening, putting one token from your pile into the pool, taking half of the tokens in the pool (it can be rounded up or down, take your pick), or taking all the tokens. If the pool is empty, every player puts in one token.<p>It seems obvious that in most cases you can expect to come out with more than you came in. For one player, stopping after one round (so the refill never comes into play; if it does, subtract another 0.25) and assuming infinitely divisible tokens, the expected value is given by 3&#x2F;8<i>g</i>-0.25, where <i>g</i> is the number of tokens in the pool initially. Simple enough.<p>But when attempting the real(er) version, things got complicated. There are a fair number of new considerations: the number of players (which also determines <i>g</i>&#x27;s value after the pool has been emptied), someone&#x27;s position in the turn order (since those before wil impact things) and the order in which rolls are made (adding one to the pool, emptying it, refilling it and dividing it by two yields different results than adding one to the pool, dividing it by two, emptying it and refilling it).<p>Do you have any ideas, or know of anyone who&#x27;s tried to answer this question or analogous ones? Is it even <i>possible</i> to quantify (in a reasonable amount of time) the average expected value of one complete round for a random player in a game of dreidel with <i>p</i> players?

2 条评论

pinewurst5 个月前
<a href="https:&#x2F;&#x2F;buttondown.com&#x2F;hillelwayne&#x2F;archive&#x2F;formally-modeling-dreidel-the-sequel&#x2F;" rel="nofollow">https:&#x2F;&#x2F;buttondown.com&#x2F;hillelwayne&#x2F;archive&#x2F;formally-modeling...</a>
pavel_lishin5 个月前
It feels like you could simulate enough games with code to get a reasonable approximation, even if you couldn&#x27;t prove it mathematically.