In various algorithms such as the construction of the Voronoi diagram, the incircle test allows to check if four points are cocircular. It can be written as
$$\Delta=\begin{vmatrix} x_a&y_a&x_a^2+y_a^2&1\\ x_b&y_b&x_b^2+y_b^2&1\\ x_c&y_c&x_c^2+y_c^2&1\\ x_d&y_d&x_d^2+y_d^2&1\\ \end{vmatrix}=0.$$
It can be interpreted as the coplanarity test of the four points lifted to the paraboloid $z=x^2+y^2.$
I would like to relate the value of the determinant (when not zero) to the distance of one point to the circle formed by the other three, which should be an expression with a $\Delta$ factor. I know how to find the center and radius of the circle, but I am hoping that there is a more direct way.
Update:
I have worked it out analytically, but I am still looking for a more geometric approach.