The context is the following. The function $A(x)$ is split into odd and even powers.
$ 3 + 4x + 6x^2 + 2x^3 + x^4 + 10x^5 = (3 + 6x^2 + x^4) + x(4 + 2x^2 + 10x^4)$
Notice that the terms in parentheses are polynomials in $x^2$. More generally,
$ A(x) = A_e(x^2) + xA_o(x^2) $
What does "polynomials in $ x^2 $" mean? Does it mean $A_e$ or $Ao$ can be divided by $ x^2 $ or root squared?
It means that the variable that appears in the polynomials is $x^2$. It follows a rather straight-forward pattern:
Note that in the last two, I needed to use parentheses because the name of the variable contains arithmetic operations in them. And we don't want those "leaking out" into the actual polynomial (at least not at this stage). I could've written $x^4$ instead of $(x^2)^2$, and $(x^2+2xy+y^2)$ instead of $(x+y)^2$, but then the above pattern wouldn't be as visible.
Of course, a polynomial in $x^2$ is also, at the same time, a (different) polynomial in $x$ (for instance, it has double the degree). Spotting when a polynomial in $x$ (or some other plain single-letter variable) is simultaneously a polynomial in some compositely named variable like $x^2$ can be a very powerful tool. For instance in your case, where it is the backbone of the fast Fourier transform (at least that's what that looks like to me).