QUESTION:
Suppose $y(x) = 3 + O (2x)$ and $g(x) = \cos(x) + O (x^3)$ for $x << 1$. Then, for $x << 1:$
(a) $y(x)g(x) = 3 + O (x^2)$
(b)$ y(x)g(x) = 3 + O (x^4)$
(c) $y(x)g(x) = 3 + O (x^6)$
(d) None of these
MY WORKINGS:
$y(x) = 3+O(2x) = 3 + O(x) \implies y(x)g(x) = 3(\cos(x)) + 3(O(x^2)) + O(x)\cos(x) + O(x^4)$
Which simplifies to: $3 + O(x^2) + O(x^3) + O(x^4) + O(x) + O(x^3)$, given that $\cos(x) = 1 - \frac{x^2}{2!} \cdots = 1 + o(x^2)$
Now, the answer is (d), none of the above, but in the solutions they simplify $3 + O(x^2) + O(x^3) + O(x^4) + O(x) + O(x^3)$ to $3 + O(x)$ which I don't understand.
$$g(x)\in O(x^4)\Longleftrightarrow \exists C>0,\exists \varepsilon>0,\forall x\in(-\varepsilon,\varepsilon),, |g(x)|\le C|x^4|$$ $$g(x)\in o(x^4)\Longleftrightarrow \forall C>0,\exists \varepsilon >0,\forall x\in(-\varepsilon,\varepsilon),, |g(x)|\le C|x^4|$$
In the end it's not a matter, because both $o(x^4)$ and $O(x^4)$ are $O(x)$ and you want a $0$-order expansion, but I think you ought to be aware of that.
– Jun 02 '15 at 09:03