让我们看一下不同最大值的概率。
为了使你的最大值达到 1,你的两次掷骰都必须是 1。在 36 总结果中,有一种 1 方法可以做到这一点。 P(max=1)=361
为了使你的最大值达到 2,我们只能滚动 1′s 和 2′s。这为我们提供了 2 选项,每个卷总计为 4。然而,我们必须减去最高掷骰为 1 的情况,从而为我们留下 3 的方法,使我们的最大值为 2。
P(max=2)=364−1=363
我们可以使用类似的过程来计算P(max=3)=369−3−1=365
你可以继续使用此过程来计算 P(max=n) 或注意图案的形成:P(max=n)=P(max=(n−1))+362
P(max=4)=367
P(max=5)=369
P(max=6)=3611
E(max)=∑P(max=n)⋅N=361⋅1+363⋅2+365⋅3+367⋅4+369⋅5+3611⋅6
E(max)=36161
Original Explanation
Let's take a look at the probabilities of different maxes.
For your maximum value to be 1, both of your rolls must have been 1. There is 1 way to do this out of the 36 total outcomes. P(max=1)=361
For your max to be 2, we can only roll 1′s and 2′s. This gives us 2 options for each roll totalling to 4. However, we must subtract the case where the highest roll is 1, leaving us with 3 ways for our max to be 2.
P(max=2)=364−1=363
We can use a similar process to calculate P(max=3)=369−3−1=365
You can continue using this process to calculate P(max=n) or notice the pattern forming: P(max=n)=P(max=(n−1))+362
P(max=4)=367
P(max=5)=369
P(max=4)=3611
E(max)=∑P(max=n)⋅N=361⋅1+363⋅2+365⋅3+367⋅4+369⋅5+3611⋅6
E(max)=36161