I am looking to find the roots of $f(x) = x^{2a+1}+x^{a+1}+x-x^a$ where $a$ is a rational with $0<a<1$. With $a=p/q, p<q$ and lettings $z^q=x$ this can be transformed into the polynomial
$$p(z) = z^{2p+q}+z^{p+q}+z^q-z^p$$ As I am looking for roots, this could also be expressed as $$0 = z^{2p}+(1-\frac{1}{z^q})z^p+1, z\not= 0$$ which looks similar to a quadratic in $z^p$. Might be extraneous, but $q=100$ and $90<p<99$. Is there any guidance into how to solve this? I have attempted expressing as exponential polynomials and Taylor series expansion but have become stuck.
It seems that, beside the trivial $x=0$, there only one zero for the function $$f(x) = x^{2a+1}+x^{a+1}+x-x^a$$ and the solution is a nice function of $a$ (have a look here). If the link is broken, type in Wolfram Alpha
ContourPlot[x^(2a+1)+x^(a+1)+x-x^a == 0,{a,0,1},{x,0,0.35}]A model of the type $$\color{blue}{x=\frac 13 +\sum_{n=1}^{p-1}\alpha_n\,a^{\beta n}-\left(\frac 13+\sum_{n=1}^{p-1}\alpha_n \right)\,a^{\beta p}}$$ can do a quite decent job for an approximation. For sure, the parameters $\alpha_n$ and $\beta$ have to be adjusted in order to match the data.
To show the impact of $p$ on the sum of squares ($99$ data points generated from $a=0.01$ up to $a=0.99$ by steps of $0.01$)
$$\left( \begin{array}{cc} \text{ p} & \text{SSQ(p)} \\ 2 & 1.63987\times 10^{-2} \\ 3 & 1.09277\times 10^{-3} \\ 4 & 7.57307\times 10^{-4} \\ 5 & 1.27689\times 10^{-4} \\ 6 & 9.27178\times 10^{-5} \\ \end{array} \right)$$
Trying to avoid too many terms, with $p=4$, $\beta \sim 2.578$. So, selecting $\beta=\frac 52$ and making the coefficients rational, the estimate is
$$x_0=\frac 13-\frac{23}{117}a^{\frac 5 2}-\frac{19}{104}a^5+\frac{82}{145}a^{\frac{15} 2}-\frac{40}{77}a^{10}$$ This corresponds to $R^2=0.99990$.
Making one or two iterations of Newton method will probably be sufficient (for sure, better would be Halley or Householder mathods).
Some numbers $$\left( \begin{array}{cccc} a & x_0 & x_1 & \text{solution} \\ 0.05 & 0.333223 & 0.332998 & 0.332998\\ 0.10 & 0.332710 & 0.331987 & 0.331986\\ 0.15 & 0.331607 & 0.330287 & 0.330286\\ 0.20 & 0.329762 & 0.327877 & 0.327875\\ 0.25 & 0.327029 & 0.324722 & 0.324718\\ 0.30 & 0.323264 & 0.320777 & 0.320771\\ 0.35 & 0.318328 & 0.315981 & 0.315975\\ 0.40 & 0.312101 & 0.310255 & 0.310251\\ 0.45 & 0.304499 & 0.303503 & 0.303501\\ 0.50 & 0.295490 & 0.295598 & 0.295598\\ 0.55 & 0.285107 & 0.286376 & 0.286373\\ 0.60 & 0.273431 & 0.275619 & 0.275609\\ 0.65 & 0.260532 & 0.263023 & 0.263008\\ 0.70 & 0.246329 & 0.248168 & 0.248159\\ 0.75 & 0.230337 & 0.230468 & 0.230468\\ 0.80 & 0.211237 & 0.209050 & 0.209032\\ 0.85 & 0.186197 & 0.182425 & 0.182362\\ 0.90 & 0.149869 & 0.147709 & 0.147682\\ 0.95 & 0.092937 & 0.098827 & 0.098517\\ \end{array} \right)$$