Problem 84
Monopoly Odds
In the game, Monopoly, the standard board is set up in the following way:

A player starts on the GO square and adds the scores on two
In addition to G2J, and one card from each of CC and CH, that orders the player to go directly to jail, if a player rolls three consecutive doubles, they do not advance the result of their
At the beginning of the game, the CC and CH cards are shuffled. When a player lands on CC or CH they take a card from the top of the respective pile and, after following the instructions, it is returned to the bottom of the pile. There are sixteen cards in each pile, but for the purpose of this problem we are only concerned with cards that order a movement; any instruction not concerned with movement will be ignored and the player will remain on the CC/CH square.
- Community Chest (
cards):- Advance to GO
- Go to JAIL
- Chance (
cards)- Advance to GO
- Go to JAIL
- Go to C1
- Go to E3
- Go to H2
- Go to R1
- Go to next R (railway company)
- Go to next R
- Go to next U (utility company)
- Go back
squares
The heart of this problem concerns the likelihood of visiting a particular square. That is, the probability of finishing at that square after a roll. For this reason it should be clear that, with the exception of G2J for which the probability of finishing on it is zero, the CH squares will have the lowest probabilities, as
By starting at GO and numbering the squares sequentially from
Statistically it can be shown that the three most popular squares, in order, are JAIL (
If, instead of using two
大富翁几率
大富翁游戏的标准棋盘大致如下图所示:

玩家从起点GO出发,掷两个六面的骰子并将点数和相加,作为本轮前进的步数。如果没有其它规则,那么落在每一格上的概率应该是
除了落在G2J上,或者在CC或CH上抽到入狱卡之外,如果玩家连续三次都掷出两个相同的点数,则在第三次时将会直接入狱。
游戏开始时,宝箱卡和机会卡将被洗牌打乱。当一个玩家落在CC或CH上时,他们从宝箱卡和机会卡的牌堆最上方取一张卡,遵循指令行动,并将该卡放回牌堆的最下方。宝箱卡和机会卡都各有
- 宝箱卡 (
张卡):- 回到起点GO
- 进入监狱JAIL
- 机会卡 (
张卡):- 回到起点GO
- 进入监狱JAIL
- 移动到C1
- 移动到E3
- 移动到H2
- 移动到R1
- 移动到下一个R(铁路公司)
- 移动到下一个R
- 移动到下一个U(公共服务公司)
- 后退三步
这道题主要考察掷出骰子后停在某个特定方格上的概率。显然,除了停在G2J上的可能性为
从起点GO开始,将方格依次标记
统计学上来说,三个最有可能停下的方格分别是JAIL(
假设我们不用两个六面的骰子,而是用两个四面的骰子进行游戏,求出三个最有可能停下的方格所构成的六位数字串。
Gitalking ...