I recently learned about big-O notation and I think I get it but in some uses it does not line up with what I think I understand it as. In the wikipedia page it calls using the form $f(x) = O(g(x))$ an abuse of notation because all it is saying is that there is a relationship between the two. It goes on to use similar notation to say
$g(x) = h(x) + O(f(x))$
expresses the same as
$g(x) - h(x) = O(f(x))$
This is easy enough to understand, but I fail to take valuable meaning from statements such as
$(n+O(n^{1/2}))(n + O(\log n))^2 = n^3 + O(n^{5/2})$
where it would be impossible to set it up as an equality with my big-O statement on one side then "take away" the misleading notation. If someone could help me understand this I would greatly appreciate it.