problem
Can you paint the real number line using three colors such that
- each real number is in a non-trivial interval (singletons not allowed) that is painted a single color; and
- between any two points of different colors, there is a point that is the third color?
- all three colors must be used
current attempts thus far:
approach 1
- Color all unit intervals $[N,N+1)$ red (where $N$ is an integer).
- Remove the right 1/3 (in absolute distance, not in proportion) of each interval and replace it with a blue interval that is closed on the left and open on the right.
- Remove the right 1/9 (in absolute distance, not in proportion) of each interval and replace it with a green interval that is closed on the left and open on the right.
- Remove the right $\frac{1}{3^n}$ (in absolute distance, not in proportion) of each interval and replace it with the "other" color.
At step 4 we recurse forever.
approach 2
Encode the real number line in base 7 and if first odd digit in the decimal expansion after the decimal point is a 1 then make the number red, if it's 3 then green, if it's 5 then blue.
problems with these approaches
Approach 1 has a countable infinity of points where the color is not defined. Consider 1/2 which is at the right side of one of the original red intervals and is open on the right. It's at the closed left side of an infinitesimally small interval that is green or blue... or is it, the recursion is constantly changing the colors back and forth.
Approach 2 has an uncountable(?) infinity of points where the color is undefined, the set of all points that a decimal expansion composed entirely of even digits.