To solve for the roots of $x^2 + bx^\frac{1}{2} + c=0$, I thought I might substitute $u = x^\frac{1}{2}$ to get $$u^4 + bu + c=0$$
But I don't really know what to do with that either. I plugged both into Wolfram Alpha, which provided some really long complicated solutions. However, I'm looking to implement this function in Julia and the translation to Julia would be ugly. I can determine a reasonable interval of interest, and can do a binary search for $0$ over that interval. So, I have that solution.
Is there a more elegant mathematical approach?
Hint: Writing $$bx^{1/2}=-c-x^2$$ so we get by squaring $$b^2x=c^2+x^4+2cx^2$$ and now good luck!