794. Seventeen Points

This problem uses half open interval notation where represents .

A real number, , is chosen in the interval . A second real number, , is chosen such that each of and contains exactly one of . Continue such that on the -th step a real number, , is chosen so that each of the intervals for contains exactly one of .

Define to be the minimal value of the sum of a tuple chosen by such a procedure. For example, obtained with .

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

Find and give your answer rounded to 12 decimal places.

794. 十七个点

本题中我们用左闭右开区间 表示

我们先从 中选出一个实数 随后,我们再选出一个实数 ,使得区间 , 均只含二元组 中的一个数。 我们不断进行此过程:第 步中,我们选出一个实数 使得:对于任意 ,区间 都只含 元组 中的一个数。

步后我们得到一个 元组 ,记 的最小值。例如 ,这可以通过 取到。

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

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


这个链接 回到源站。

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


1 如果有感兴趣的读者的话,这里描述的问题被称为 Irregularities in the distributions。数学家 E. R. Berlekamp 和 R. L. Graham 曾在 1970 年给出过其证明。但在做本题时请不要参阅此论文。