Using @Thomas Andrews's notation, we look for the zero of function
$$f(u)=u^k- c\,u+(c-1) \qquad \text{where} \qquad k=\frac a b$$ As already said, the first derivative cancels at
$$u_*=\left(\frac{c}{k}\right)^{\frac{1}{k-1}}$$
Expanding as a series around $u_*$, the first estimate is given by
$$u_0=u_*-\sqrt{-2\frac{f(u_*)}{f''(u_*)}}$$ from which we can safely start Newton iterations
For the case where $a=1.5;b=0.3;c=2063/1836$, converted to decimals, this gives
$$u_*=0.688516 \qquad \implies \qquad u_0=0.298976$$ Newton iterates are
$$\left(
\begin{array}{cc}
n & u_n \\
0 & 0.298976 \\
1 & 0.105273 \\
2 & 0.110048 \\
\end{array}
\right)$$
For the case where $a=1638;b=250;c=1.062$, converted to decimals, this gives
$$u_*=0.720550 \qquad \implies \qquad u_0=0.34196$$ Newton iterates are
$$\left(
\begin{array}{cc}
n & u_n \\
0 & 0.3419602 \\
1 & 0.0546289 \\
2 & 0.0583804 \\
\end{array}
\right)$$
Thomas Andrews' thinking helped me,But what bothers me most is how do I choose the initial value of this equation using Newton's method at different values – yh l Jun 21 '23 at 14:44