Given three points in the complex plane (i.e. numbers $z_1,z_2,z_3\in\mathbb C$), they define a unique circle (unless they are collinear). When does that circle have radius one?
I know how to compute that “the hard way”, i.e. by separating real and imaginary part. From there I could either construct perpendicular bisectors and intersect these, or I could solve $ax_k+by_k+c=x_k^2+y_k^2$ for $k\in\{1,2,3\}$ and then deduce the radius from the $a,b,c$ I found.
But I guess there might be some more elegant way to express this condition using vocabulary more suited for complex numbers. Separating numbers into real and imaginary part for all numbers should not be needed, even though conjugation might still be needed at some point.
As a motivating example: we know that four points are cocircular iff they satisfy
$$\begin{vmatrix} x_1^2+y_1^2 & x_1 & y_1 & 1 \\ x_2^2+y_2^2 & x_2 & y_2 & 1 \\ x_3^2+y_3^2 & x_3 & y_3 & 1 \\ x_4^2+y_4^2 & x_4 & y_4 & 1 \end{vmatrix}=0$$
but with $z_k=x_k+iy_k$ you can also check the condition
$$\frac{(z_1-z_3)(z_2-z_4)}{(z_1-z_4)(z_2-z_3)}\in\mathbb R$$
which is a lot easier to write and compute. I'm looking for some similar simplification for the case of unit radius.
You could compute $r = A/2\sin\alpha$ which would be a bit easier, as $A = |c-b|$ and $$\sin\alpha = \left|\Im\left(\frac{(b-a)|c-a|}{(c-a)|b-a|}\right)\right|$$
But well, I'm aware this is not very elegant either...