Given a positive integer , consider all integer points in -dimensional space (that is, points all of whose coordinates are integers). When two integer points have Euclidean distance , we say they are adjacent to each other. Is it possible to mark some of these integer points so that, for every integer point, among the points consisting of the point itself and all points adjacent to it, exactly one is marked?
Problem 611
Official solution
Yes, it is possible!
令 為整數點的座標, 將所有滿足
的點標記, 即達成條件; 對於每個點, 可以唯一的表示為 , 其中 為整數, . 當 時即該點被標記, 否則即是沿著第 個座標方向的兩個相鄰點之一被標記。
[Rendered in English:] Let be the coordinates of an integer point. Mark all points satisfying
and this achieves the condition; for every point, can be uniquely written as , where is an integer, . When , the point itself is marked; otherwise, it is one of the two adjacent points along the -th coordinate direction that is marked.