One very very brute force and tedious way to proceed would be to construct the equations to find the 3 intersections. There will be three equations and each pair will generate the coordinates of an intersection. Now for a the circle, $(x-h)^2+(y-k)^2-r^2=0$, we plug in our previously found intersection points which generates three quadratic equations in $h,k,r$. Solving this quadratic system will give $h,k,r$ in terms of the intersection points. Form the appropriate equation for the circle and then expand the determinant and compare. Let $(x_1,y_1),(x_2,y_2),(x_3,y_3)$ be the intersection points:
$h = \frac{(y_1^2 + x_1^2) (y_2 - y_3) + (y_2^2 + x_2^2) (y_3 - y_1) + (y_3^2 + x_3^2) (y_1 - y_2)}{2 (x_1 (y_2 - y_3) + x_2 (y_3 - y_1) + x_3 (y_1 - y_2))}$
$k = \frac{(y_1^2 + x_1^2) (x_3 - x_2) + (y_2^2 + x_2^2) (x_1 - x_3) + (y_3^2 + x_3^2) (x_2 - x_1)}{2 (x_1 (y_2 - y_3) + x_2 (y_3 - y_1) + x_3 (y_1 - y_2))} $
$r = \frac{\sqrt{((x_1 - x_2)^2 + (y_1 - y_2)^2) ((x_1 - x_3)^2 + (y_1 - y_3)^2) ((x_2 - x_3)^2 + (y_2 - y_3)^2)}}{2 (x_1 (y_2 - y_3) + x_2 (y_3 - y_1) + x_3 (y_1 - y_2))} $
Still have to be related to the linear coefficients $a_i,b_i,c_i$. Pretty messy. However, this all looks closely related to a Vandermonde system of some sort as does your determinant.