How can I show that $y(x) = 1 - \cos(x)$ is $\mathcal{O}(x^2)$ for $|x| <<1$ ?
Additionally, with the $|x| << 1$ is there a precise definition? I tried to google it but nothing conclusive returned. I'm assuming it just means $x \to 0$. Is there any reason for the $|x| <<$ term to use the number $1$? Or is it just a matter of convetion.
Would you say that $\cos(x) \leq x$ in this case, or use a strict inequality as $x \to 0$ and $x \neq 0$
Is it sufficient to do the following:
$\lim_{x \to 0} \frac{1-cos(x)}{x^2} = \lim_{x \to 0} \frac{1}{x^2} - \frac{1}{x} \neq 0$
To show that $f(x)$ is of $ \mathcal O(g(x))$ for $x\rightarrow 0$, one has to show that, for a constant, $|C|<\infty$, the following holds: $$\lim_{x\rightarrow 0}\frac{}{}\frac{f(x)}{g(x)}=C.$$
In words: $f(x)$ tends to somewhere in the Order of $g(x)$ when $x$ tends to the same number or even $\pm \infty$. This is "big Oh" if the quotient above tends to a constant, and it is "little oh" if the quotient tends to $0$. In our case $$\lim_{x\rightarrow0}\frac{1-\cos(x)}{x^2}=\lim_{x\rightarrow0}\frac{\sin(x)}{2x}=\frac{1}{2}.$$ (Where the L'Hospital rule was used.)