I reduced a system of non-linear equations to a single equation for $c$:
$$\left(\frac{x-c}{y-c}\right)^{w - u} = \left(\frac{x-c}{z-c}\right)^{v-u}$$
I need to solve this equation for $c \notin \{ x, y, z \}$ knowing $x, y, z, u, v, w \in \mathbb{R}$ where $x \neq y, x \neq z, y \neq z$ and $u \neq v, u \neq w, v \neq w$.
Is there any way to solve this equation directly? I would like to avoid iterative algorithms as part of this problem. If there is no direct way to solve the equation, which algorithm would you suggest?