My question is in the field of the big-O-notation and complexity/asymptotic functions:
Probably something that I'm missing, but I've couldn't find any well explained solution for the following: What would be the result of:
(1) $O(f(n))-O(f(n))$?
Also, is the solution of $O(f(n))+O(f(n))$ is based on the same idea/rules of (1)
The big-O classes are closed under addition/subtraction of functions, which is what I assume you mean (i.e. if two functions $g$ and $h$ are both $O(n^2)$ say, then so is $g+h$ and $g-h$ in general).