掷骰期望比较:乘积、平方、五次中位数平方
Die Rank
题目详情
独立掷 5 次公平六面骰得 。比较下列三者从大到小的顺序:
a) ;
b) ;
c) ,其中 为 5 次结果的中位数。
用 a=1,b=2,c=3 的数字拼接输出顺序(例如 c>b>a 输出 321)。
Let be the outcomes of 5 independent rolls of a fair 6-sided die with values on each side. Rank each of the following from largest to smallest in terms of value: a) ; b) ; c) , where is the median of the 5 die rolls.
Let and . Answer with the integer corresponding to the concatenation of the order from largest to smallest. For example, if you believe , answer with 321.
解析
可算得:
而中位数更集中在中间偏大的值,其平方期望介于两者之间,因此顺序为 ,对应 231。
Original Explanation
We can calculate by direct calculation via independence of the rolls. Furthermore, we can calculate , so we know that . We now need to find where lies relative to these. It's worth just thinking about this intuitively, as the calculations are quite difficult.
By inspection, we note that the distribution here is skewed towards the middle (we would need 3 or 6s or 3 or 1s to get either extreme). Note that in the sum for , we gain much more through the squared 6 than we lose in the squared 1. This ranks it below .
To compare to , we note if either one of the dice is low, it reduces our product greatly. This reduction occurs with very high probability, whereas the median is more likely to reach at least a moderate value (say 3 or 4), so the median is skewed more right. Therefore, we get that , corresponding to the answer 231.