1

I have a simulation test with this type of exercise, asymptotic expansion:

$$\sqrt{x^6+x^5-2x^3+O(x^2)}$$

with

$$ x\rightarrow \infty$$

I have studied the theory of Landau's symbols but I have no idea about how to solve.

Can someone please explain me how to do that?

1 Answers1

0

Write $$\sqrt{x^6+x^5-2x^3+O(x^2)}=$$ $$=\sqrt{x^6+x^5-2x^3}+\sqrt{x^6+x^5-2x^3+O(x^2)}-\sqrt{x^6+x^5-2x^3}=$$ $$=\sqrt{x^6+x^5-2x^3}+\frac{O(x^2)}{\sqrt{x^6+x^5-2x^3+O(x^2)}+\sqrt{x^6+x^5-2x^3}}.$$ But $\sqrt{x^6+x^5-2x^3+O(x^2)}+\sqrt{x^6+x^5-2x^3}\sim 2x^3$, hence $$\frac{O(x^2)}{\sqrt{x^6+x^5-2x^3+O(x^2)}+\sqrt{x^6+x^5-2x^3}}=O(x^{-1})$$ thus $$\sqrt{x^6+x^5-2x^3+O(x^2)}=\sqrt{x^6+x^5-2x^3}+O(x^{-1})$$

  • why did you do $\frac{O(x^2)}{\sqrt{x^6+x^5-2x^3+O(x^2)}+\sqrt{x^6+x^5-2x^3}}$ – Christian Giupponi Jun 25 '15 at 08:59
  • @ChristianGiupponi: He did it because it brought him closer to the final answer - he replaced subtraction between two similar terms, which by itself is difficult to evaluate, with a division between two terms with clear growth. To see that it's correct, try multiplying the denominator with the expression he's replacing. – Meni Rosenfeld Jun 25 '15 at 17:51