In a problem of classical mechanics, I encounter the following equation:
$$\mu \sin^4 \theta + \cos \theta = 0 \qquad \mu > 0 \qquad \frac{\pi}{2} < \theta < \pi,$$
where $\mu$ is some constant containing things like mass $m$ and angular momentum $L$. I would like to find the roots in $\theta$ for it being in the interval $\left(\frac{\pi}{2},\pi \right)$, which is a condition I know for sure to be true. Mathematica gives me an extremely blown up solution for this equation. Is there any (nice) way to find the roots of this equation by hand?
Let $x=-\cos(\theta)$ so that
$$\mu(1-x^2)^2-x=0$$
This polynomial indeed has a single root in the range $[0,1]$ for all positive $\mu$.
We can rewrite the above equation as
$$\mu=\frac x{(1-x^2)^2}.$$
For small $x$, $x\approx\mu$.
For $x$ close to $1$, let $1-\epsilon$, we have
$$\mu=\frac{1-\epsilon}{(1-(1-\epsilon)^2)^2}\approx\frac1{4\epsilon^2}.$$
This gives us the approximation
$$x=1-\frac1{2\sqrt\mu}.$$
You can refine the root numerically in the range
$$[\mu,1-\frac1{2\sqrt\mu}].$$
For a "manual" method, you can plot the relation $\mu=f(x)$ as accurately as possible. Then for a given value of $\mu$, find the corresponding $x$ on the plot and use it for a starting value of Newton's iterations.
Update:
The $\mu$ curve has a vertical asymptote at $x=1$, which makes it more difficult to handle. We can discard it by considering the function
$$\frac\mu{\mu+1}=\frac x{(1-x^2)^2\left(\frac x{(1-x^2)^2}+1\right)}=\frac x{(1-x^2)^2+x}.$$
It turns out that the function is fairly well approximated by $x$ in the range of interest, so that a good initial approximation is simply
$$x=\frac\mu{\mu+1} !$$