I was puzzling with circle inversions and was wondering about a converse of this:
Given 3 points A, B and M
Is there only one point R so that $d(R,A) * d(R,B) = d(R,M)^2$ or are there more of them?
(No there are many points R, figured out that much)
And if there a more of these points what curve do they form?

Assuming that we're talking in the plane with the standard (Euclidean) distance, let's go to coordinates: \begin{align} R&=(r_1,r_2)\\ A&=(a_1,a_2)\\ B&=(b_1,b_2)\\ M&=(m_1,m_2) \end{align} In this case, \begin{align} d(R,A)&=\sqrt{(r_1-a_1)^2+(r_2-a_2)^2}\\ d(R,B)&=\sqrt{(r_1-b_1)^2+(r_2-b_2)^2}\\ d(R,M)&=\sqrt{(r_1-m_1)^2+(r_2-m_2)^2} \end{align} Therefore, if we square both sides of your given equation, you're asking for solutions to $$ \left((r_1-a_1)^2+(r_2-a_2)^2\right)\left((r_1-b_1)^2+(r_2-b_2)^2\right)=\left((r_1-m_1)^2+(r_2-m_2)^2\right)^2. $$ If you multiply this out, the degree $4$ terms ($r_1^4$, $r_1^2r_2^2$, and $r_2^4$) cancel out, leaving a cubic bivariate polynomial whose solutions are the $R$'s of interest. There are lots of cubic plane curves, so it is unlikely that this curve has a name.
However, this formulation allows us to see that there are multiple solutions to the given equation (in many cases). Suppose that you have chosen a value for $r_1$, then you are left with a cubic in $r_2$. Since cubics always have roots real, you can find a value for $r_2$. Since you can do this for every $r_1$ (except for, perhaps, finitely many), there are infinitely many $R$'s satisfying the equation (unless there is some cancellation due to a special structure leading to cancellation in the cubic between $A$, $B$, and $M$.