A mathematical expression is feasible, if it obeys the following rules:
- Any real number may be used
- One may use brackets "(" and ")" to structure the expression, and to make it well-defined
- The allowed mathematical operations are addition ($+$), subtraction ($-$), multiplication ($*$).
- Furthermore there is the special operation plus-minus ($\pm$).
Every feasible expression encodes the following set of numbers: every occurrence of $\pm$ in the expression is replaced once by $+$ and once by $-$, in all possible combinations.
Examples: For the expression $(1\pm2)\pm1$, we get the four corresponding numbers $(1+2)+1=4$ and $(1+2)-1=2$ and $(1-2)+1=0$ and $(1-2)-1=-2$; hence this expression encodes the set $\{-2,0,2,4\}$. Similarly one sees that the expression $(4\pm\frac12)\pm\frac12$ encodes the three-element set $\{3,4,5\}$.
Question: Does there exist a feasible expression that encodes the set $\{1,2,4\}$?