A seller wants to cut a piece of cheese into parts that can be divided into two piles of equal weight. He can cut any piece of cheese in the same ratio by weight, where . Is it true that for any interval of length 0.001 within the interval , there exists a value of such that he can achieve the desired result with a finite number of cuts?
Problem 1127
Official solution
Let's call a number suitable if , we have
Since , there exists a natural number such that and, consequently, . In the set of suitable numbers , the first number is less than 0.001, the last is greater than 0.999, and the differences between adjacent numbers are less than 0.001. Therefore, this set has a non-empty intersection with each interval of length 0.001 within the interval .
## Answer
Correct.