Is it possible to partition the set $\Omega=\{1,2,3,4,5,6,7,8,9\}$ in two subsets $\Omega=A\cup B$, $A\cap B=\emptyset$, such that no member of either subset is the mean of two other members of the same subset, i.e. such that the following condition holds? $$ \forall X\in\{A,B\}\forall x\in X\forall y,z\in X\setminus\{x\}\bullet y\neq z\implies x\neq\frac{y+z}{2} $$
The answer is: no, such a partition is impossible. This can be proven, e.g. by creating a tree of all possible partitions, and excluding each leaf.
I managed to write a proof that is more elegant than the brute-force method just described, but even so, it isn't particularly enlightening. I wonder if there is some insightful way of proving this result succinctly, possibly making a clever use of the Pigeonhole Principle.
In other words, can the set $[9]=\{1,2,3,4,5,6,7,8,9\}$ be partitioned into two sets, neither of which contains a $3$-term arithmetic progression? The answer is no because the Van der Waerden number $W(2,3)$ is equal to $9$. It took me a few minutes to verify this by hand with the obvious backtrack algorithm.
Of course $9$ is best possible here since $$[8]=\{1,2,5,6\}\cup\{3,4,7,8\}=\{1,3,6,8\}\cup\{2,4,5,7\}=\{1,4,5,8\}\cup\{2,3,6,7\}.$$
Here is my work showing that $W(2,3)=9$. The notation $0010011$ means that the numbers $1$, $2$, $4$, and $5$ go into one set, while the numbers $3$, $6$, and $7$ go into the other set, and putting $8$ into either set will create a $3$-term A.P.
$0010011$
$001011$
$00110011$
$0011010$
$0011011$
$0100101$
$010011$
$0101100$
$01011010$
$01100110$
$011010$
$011011$