I am studying Taylor polynomials with Peano remainder in my Multivariable course, and I am trying to understand how little-o works in two variables. However, I am having difficulty with a few concepts in this area, and would like to ask for not only clarification, but if possible some literature references. So, here is what I know:
As I wrote in this question, we introduced the Taylor-MacLaurin polynomial of degree 2 of a generic two-variable real function as follows: $$ f(x,y) = f(0, 0) + f_x (0, 0) x + f_y (0, 0) y + \frac{1}{2}\left[ f_{xx} (0,0)x^2 + 2f_{xy} (0, 0)xy + f_{yy} (0, 0) y^2 \right] + o \left(x^2 +y^2 \right) $$ where $o \left(x^2 +y^2 \right)$ is the Peano's form of remainder of this function. By definition, $f(x, y) = o(g(x, y))$ ["$f(x,y)$ is little-o of $g(x)$"] if $$ \lim_{(x, y) \to (0,0)} \frac{f(x, y)}{g(x, y)} = 0 $$ Now, for single-variable functions there are some properties concerning the little-o notation [Taken from: Marcellini, Paolo; Sbordone, Carlo, Analisi Matematica Uno. Napoli: Liguori, 1998, ISBN: 88-207-2819-2, p. 373] $$ \begin{align*} o(x^n) + o(x^n) &= o(x^n) \\ c \cdot o(x^n) &= o(cx^n) = o(x^n) \\ o(x^n) - o(x^n) &= o(x^n) \\ x^m \cdot o(x^n) &= o(x^{m+n}) \\ o(x^m) \cdot o(x^n) &= o(x^{m+n}) \\ o(o(x^n)) &= o(x^n) \\ o(x^n + o(x^n)) &= o(x^n) \end{align*} $$ where $m, n \in \mathbb{N}$ and $c$ is a non-negative constant.
My question is: are there any similar properties concerning $o((x^2 + y^2)^\alpha)$, where $\alpha > 0$? I tried to look it up on the net and only found this thread from an Italian mathematics forum which (from what I've interpreted) says that there is no such form due to the nature of limits of functions of two variables, so the definition must be used.
Now, here's the thing: our lecturer, to "better" explain how some things work, gave us a series of equations, such as: $$ x^3 y = o(x^2 + y^2) $$ She told us this holds true because, and I quote, "it's like saying $\rho^4 = o(\rho^2)$". Hence I thought that in some cases it is possible to use the properties involving little-os in one variable in combination with polar coordinates, where $\rho = \sqrt{x^2 + y^2}$. I've tried finding more information about it, with no avail.
I am therefore asking for your help in clarifying this issue. If you can, I would also be grateful if you could provide me with some useful, reliable sources from which I can draw this information and explore the topic further.
I thank you in advance for your attention.