In an older question here in MSE I've asked for the term for the "slicing" of a power series in partial series and have learned that it is "multisection". I' ve been looking at the behaviour of the threefold-multisection of the exponential series $$ \begin{eqnarray} g_0(x) &=& \sum_{k=0}^\infty {x^{3k} \over (3k)!} \\ g_1(x) &=& \sum_{k=0}^\infty {x^{3k+1} \over (3k+1)!} \\ g_2(x) &=& \sum_{k=0}^\infty {x^{3k+2} \over (3k+2)!} \\ \end{eqnarray} \\ g_0(x)+g_1(x)+g_2(x) = \exp(x) $$
I've just stepped into my older exercises with this and this time I want to work with the inverses of that functions. I know meanwhile how to invert a power series without constant but with linear term and can sometimes invert other powerseries using the recentering around one of its fixpoints. But I don't see how this can be done for $g_0(x)$ and for $g_2(x)$ . A very nice example for the inversion of such a series is that for the inverse of the $\cosh()$ function: $\cosh^{[-1]}(x)$ Its powerseries appears as very nice and smooth and I have no idea how this could have been made. So my question is mainly
- a: for the method: how to develop the inverse of such a powerseries (with constant term, here having the unit as value, or without constant and without linear term as in $g_2(0)$)
- b: but of course also simply for the solution for $g_0(x)$ and $g_2(x)$ if the methods need more then I can do myself.
If I got a view into an article in the internet so far correctly a possible solution might have used the fact that for the cos and sin-function by periodicity $\cos(x) = \sin(\pi/2 + x)$ (at least over the reals) then the inverse for the $\cos()$ taken by the inverse of the powerseries of $\sin(x)$ and then drifted to the conversion of arguments between $\cosh(x)=\cos(i x)$, but I'm not yet sure about this and have to examine the argumentation step-by-step. Anyway, this does not yet help for my problem in question because I've not yet a transfer-function for the arguments of the $g_0(x)$ and the $g_1(x)$-function.
If this of some help, there is a representation in terms of the exponential-function itself:
$ \displaystyle \text{ let } a=- \frac12 \text{ and } b= {\sqrt3 \over 2} \text{ such that over the complex } z=a+b \mathcal i \text { and } z^3 = 1 \text{ then } \\ \begin{eqnarray} \qquad \qquad g_0(x) &=& { 1\over 3} \big( e^x +2e^{ax} \cos(bx) \big) \\ \qquad \qquad g_1(x) &=& { 1\over 3} \big( e^x +2e^{ax}\big( a\cos(bx)+b\sin(bx) \big) \big) \\ \qquad \qquad g_2(x) &=& { 1\over 3} \big( e^x +2e^{ax}\big( a\cos(bx)-b\sin(bx) \big) \big) \\ \end{eqnarray}$
and also we have the circular relations of derivatives:
$ \qquad \qquad g_0'(x)=g_2(x) \qquad g_1'(x)=g_0(x) \qquad g_2'(x) = g_1(x) $ .
Here is a picture of $g_{0}(x)$ over the reals:
The picture shows already that like with the $\cos^{[-1]}(x)$ and $\cosh^{[-1]}(x)$ we'll have very limited ranges for the inversion due to its multivaluedness and singularities in its derivatives.





You are probably looking for this. That's how all the goodies with actual coefficients for the inverses are calculated for Lambert W for example and any inverse you want, so if you apply it for $\cosh^{-1}(z)$ around point $z_0=a$ provided $\cosh'(a)\neq 0$ then you'll get the coefficients of the inverse as:
$$a_n=\frac{1}{n!}\frac{d^{(n-1)}}{dw^{n-1}}\left(\frac{w-a}{\cosh(w)-\cosh(a)}\right)^n$$
$\mathbf{Addendum}$ (after the last comment)
It's a bit tricky using Wikipedia's notation. I am going to do it by changing notation and giving you the code in Maple. You can then translate it to Sage or Mathematica. Here's the Lagrange Inversion theorem (LIT) as it appears on Zaks & Zygmund. I will follow the theorem's notation to avoid any confusion.
$$H(w)=z_0+\sum_{n=1}^\infty \frac{(w-w_0)^n}{n!}\left[\frac{d^{n-1}}{dn^{n-1}}\left[\frac{z-z_0}{G(z)-w_0}\right]^n\right]_{z=z_0}$$
There is a minor problem with the above. By convention $f^{0}(z)=f(z)$, so we need to case out this case $(n-1=0)$ when programming. So here goes the code in Maple:
Now construct the dreaded power-derivatives, by casing out the $0$-th derivative as the null op:
Now construct the sum as an approximation series for $H$:
Let's try it for the two functions above, namely $G(z)=z\cdot\exp(z)$ and $H(w)=W(w)$ and see what we get, compared to the build-in series command:
$\checkmark$ for $W$. After validating the results for these $H$ and $G$, change functions at the beginning of your worksheet, by changing and updating the code as:
We again run the rest of the code and compare with the built-in "series" command:
$\checkmark$ for $\arccos$.
$\mathbf{Addendum 2}$ (one more example)
The acid test for the above is really the fundamental case, with $G=\exp$ and $H=\ln$. Let's try it. First change the functions:
and then compare with the series command:
$\checkmark$ for $ln$.
Now you can play around by changing functions and see what happens.
$\mathbf{Notes:}$