0%

Problem 689


Problem 689


Binary Series

For 0x<1, define di(x) to be the ith digit after the binary point of the binary representation of x.
For example d2(0.25)=1, di(0.25)=0 for i2.

Let f(x)=i=1di(x)i2.

Let p(a) be probability that f(x)>a, given that x is uniformly distributed between 0 and 1.

Find p(0.5). Give your answer rounded to 8 digits after the decimal point.


二进制级数

对于任意0x<1,记di(x)x的二进制表示中小数点后第i位数字。
例如,d2(0.25)=1,而对所有i2则有di(0.25)=0

f(x)=i=1di(x)i2

x01之间均匀分布,记p(a)f(x)>a的概率。

p(0.5),并将你的答案保留小数点后8位数字。


Gitalking ...