Iterative Sampling
Given an -tuple of numbers another -tuple is created where each element of the new -tuple is chosen randomly from the numbers in the previous -tuple. For example, given the probability that occurs in the first position in the next -tuple is . The probability of getting all ’s would be while the probability of getting the same -tuple (in any order) would be .
Let be the expected number of steps starting with and ending with all numbers being the same.
You are given and rounded to digits after the decimal place.
Find . Give the answer rounded to digits after the decimal place.
迭代抽样
给定一个元数组,考虑从中随机抽样得到的新元数组。例如,当原数组是时,新数组的第一位有的概率是,有的概率全都是,有的概率获得原数组(不计顺序)。
从数组出发,不断随机抽样直至数组中所有的数都相同,记所需要的步数的期望为。
已知,,保留小数点后位。
求,并将你的答案保留小数点后位。
Be the first person to leave a comment!