I want to find the intersection coordinates of two functions:
- A quadratic function $f$ of this style: $f(x) = a(x-b)^2+c$
- And a circle function $g$: $(x-d)^2+(y-e)^2=r^2$ with $y=g(x)$ and $r$ being the radius of the circle.
I know that I can rewrite the second function to $g(x)=\sqrt{r^2-(x-d)^2}+e$
Now I find myself in the position to solve $$ \sqrt{r^2-(x-d)^2}+e =a(x-b)^2+c $$ towards $x$ since I should find there zero to two intersections. But how can I find them? If I square both sides I will have to deal with $x^4$ - any ideas?