I am trying to invert the series symbolically. Is this possible in Mathematica?
Example 1 -
Let $p = u + au^2 + bu^3$, where $a,b$ are symbolic variables. I am trying to invert the series around $u=0$ say up to $4$ th order. That is I am trying to get inverse series in terms of $p$ with coefficients in terms of $a,b$.
How do we manage this once we have two dimensional case?
Example 2 -
Suppose we have $$p = u + au^2 + b uv + cv^2$$ $$q = v + dv^2 + euv+ fv^2$$
I am trying to invert the series say upto $4$th order. That is I am trying to get the inverse series in terms of $p,q$. Like $$u = ()p + ()p^2 + ()q + ()q^2 + ()pq + \ldots$$ $$v = ()p + ()p^2 + ()q + ()pq + ()q^2 + \ldots$$, where the coefficients are in terms of $a,b,c,d,e,f$.
I was trying Inverse Series $[u + a u^2 + b u^3 , p]$ but seems like it is not working.
I tried defining a function like $f[u] = u + au^2 + bu^3$ and then using the inverse series Inverse Series$[f[u],p]$. Seems this is also not working.
Any help?
EDIT - Trying Carl Woll suggestions, still I am making mistake somewhere -
asymptoticSolve[args__] := CloudEvaluate[System`AsymptoticSolve[args]]
asymptoticSolve[{p == u + a u^2 + b u v + c v^2,
q == v + d u^2 + e u v + f v^2}, {{u, v}, {0, 0}}, {{p, q}, {0, 0},
3}]
results into output
CloudEvaluate[
AsymptoticSolve[{p == {u + u^2 + u v + c v^2,
u + 2 u^2 + 2 u v + c v^2, u + 3 u^2 + 3 u v + c v^2},
q == d u^2 + v + e u v + v^2 Function[x, 4 x (1 - x)]}, {{u,
v}, {0, 0}}, {{p, q}, {0, 0}, 3}]]
Not sure why?
O[u]^4and then useInverseSeries[u + a u^2 + b u^3 + O[u]^4, p]. – Alx Sep 27 '19 at 06:45InverseSeries[Series[u + a u^2 + b u^3, {u, 0, 10}]]– yarchik Sep 27 '19 at 06:47Clear[a,b,c,d,e,f]and then try again. – Carl Woll Sep 27 '19 at 23:37