794. Seventeen Points

This problem uses half open interval notation where [a,b) represents ax<b.

A real number, x1, is chosen in the interval [0,1). A second real number, x2, is chosen such that each of [0,12) and [12,1) contains exactly one of (x1,x2). Continue such that on the n-th step a real number, xn, is chosen so that each of the intervals [k1n,kn) for k{1,...,n} contains exactly one of (x1,x2,...,xn).

Define F(n) to be the minimal value of the sum x1+x2+...+xn of a tuple (x1,x2,...,xn) chosen by such a procedure. For example, F(4)=1.5 obtained with (x1,x2,x3,x4)=(0,0.75,0.5,0.25).

Surprisingly, no more than 17 points can be chosen by this procedure.

Find F(17) and give your answer rounded to 12 decimal places.

794. 十七个点

本题中我们用左闭右开区间 [a,b) 表示 ax<b

我们先从 [0,1) 中选出一个实数 x1 随后,我们再选出一个实数 x2,使得区间 [0,12), [12,1) 均只含二元组 (x1,x2) 中的一个数。 我们不断进行此过程:第 n 步中,我们选出一个实数 xn 使得:对于任意 k{1,...,n},区间 [k1n,kn) 都只含 n 元组 (x1,x2,...,xn) 中的一个数。

n 步后我们得到一个 n 元组 (x1,x2,...,xn),记 F(n)x1+x2++xn 的最小值。例如 F(4)=1.5,这可以通过 (x1,x2,x3,x4)=(0,0.75,0.5,0.25) 取到。

令人惊讶的是,在此过程中,你最多只能取 17 个实数。1

F(17),将你的答案四舍五入至小数点后第 12 位。


这个链接 回到源站。

这个链接 回到详细版题目目录。


1 如果有感兴趣的读者的话,这里描述的问题被称为 Irregularities in the distributions。数学家 E. R. Berlekamp 和 R. L. Graham 曾在 1970 年给出过其证明