Currently I am trying to understand landau big O notation with this post on the wikipedia
$$\exp\left(x\right)=1+x+\frac{x^2}{2!}+\frac{x^3}{3!}+\frac{x^4}{4!}+\cdot\cdot\cdot~~~~~\text{for all}~~x\tag{1}$$
$$=1+x+\frac{x^2}{2}+\mathcal{O}\left(x^3\right)~~~~\text{as}~x\to 0\tag{2}$$
$$=1+x+\mathcal{O}\left(x^2\right)~~~~\text{as}~x\to 0\tag{3}$$
I've interpreted the last statement above as follows.
$$\lim_{x\to 0}\left|\frac{\exp\left(x\right)-1-x-\frac{x^2}{2}}{x^3}\right|=M\tag{4}$$
$$~~\Leftrightarrow~~\lim_{x\to\infty}\frac{\left|\exp\left(x\right)-1-x-\frac{x^2}{2}\right|}{\left|x^3\right|}=M\tag{5}$$
$$~~\Leftrightarrow~~\lim_{x\to 0}\left|\exp\left(x\right)-1-x-\frac{x^2}{2}\right|=M\cdot\left|x^3\right|\tag{6}$$
Since,$~g\left(x\right)>0~$must always be satisfied, I can rewrite the eqn4 into the following one.
$$\lim_{x\to 0^{+}}\left|\frac{\exp\left(x\right)-1-x-\frac{x^{2}}{2}}{x^{3}}\right|=M~~\leftarrow~~\text{Approach to zero from positive side}\tag{7}$$
$$=\lim_{x\to 0^{+}}\left|\frac{\exp\left(x\right)-1-x-\frac{x^{2}}{2}}{x^{3}}\right|\tag{8}$$
$$=\lim_{x\to 0^{+}}\frac{\left|\exp\left(x\right)-1-x-\frac{x^2}{2}\right|}{\left|x^{3}\right|}\tag{9}$$
$$=\lim_{x\to 0^+}\frac{\left|\exp\left(x\right)-1-x-\frac{x^2}{2}\right|}{x^3}\tag{10}$$
About above, I can't determine whether absolute braces can be removed
As those absolute symbols are removed, then I know the following.
$$L_{\text{positive}}:=\lim_{x\to 0^{+}}\frac{\exp\left(x\right)-1-x-\frac{x^2}{2}}{x^{3}}=\frac{1}{6}\tag{11}$$
Why the wikipedia article seems asserted to remove the absolute symbols in eqn10?
How$~x^3~$of$~\mathcal{O}\left(x^3\right)~$is determined so quickly in eqn2?

