That’s probably a stupid a newbie question and I’m not sure if I'm phrasing it in the right words so please feel free to correct me.
So there are only several atomic operations in math. By atomic I mean it can’t be further simplified. So any formula or equation, despite of how complex it is in the end is only a collection of these basic operations.
E.g. multiplying can be simplified as addition (as in the end it is the same result):
3 × 3 = 3 + 3 + 3 = 9
One can argue that subtracting can be also simplified (rewritten) as adding:
3 - 3 = 3 + (-3) = 0
I’m not sure how I feel about this. While it’s still the same result I would consider subtracting to be an atomic though.
The division, though, is interesting thing. It can't be rewritten as adding or subtracting because it answers completely different question: how many times a number can be subtracted from another number.
So would it be correct to say that:
- Addition
- Subtractoin
- Division
are atomic mathematical operations?
Multiplication can be broken into additions only if you restrict your argument to integers. Otherwise there is no clear way to rewrite $$\pi\times \sqrt{2}$$ using addition.
If you allow for $x-y$ to be seen as $x+(-y)$ then you should also allow for $\frac{x}{y}$ to be seen as $x\times\frac{1}{y}$. As far as this is concerned I would be tempted to consider the operation of inverting with respect to a group operation as atomic ($x\mapsto x^{-1}$), which encompasses both previous cases and rules out subtraction and division.