Exact Question: Invent a single binary operator $*$ such that for every real numbers $a$ and $b$, the operations $a + b$, $a - b$, $a \times b$, $a \div b$ can be created by applying $*$ (multiple times), starting with only $a$'s and $b$'s
From my interpretation, you can apply $*$ recursively some number of times with carefully selected parameters to produce the desired outcome.
I thought the operator should be a combination of $a - b$ and $a \cdot b^{-1}$ Since $-$ and $\div$ can produce $+$ and $\times$ respectively
Please do not tell me the full answer. Give me a hint to point me towards the right path