The vertices of a triangle are given as $A(1, 0, 0), B(3, 1, 0), C(5, 2, 1) $. Find the center and the radius of the circumcircle of this triangle.
My Attempt:
The normal to the plane of the triangle is
$ N = (B - A) \times (C - A) \\ = ( (3, 1, 0) - (1, 0, 0) ) \times ( (5, 2, 1) - (1, 0, 0) ) = (2, 1, 0) \times (4, 2, 1) = (1, - 2 , 0 ) $
The midpoint of $AB = (2, 0.5, 0)$ and the midpoint of $AC$ = (3, 1 , 0.5) $
The perpendicular bisector of $AB$ is given by
$ V_1 = N \times AB = (1, -2, 0) \times (2, 1, 0) = (0, 0, 5) $
And the perpendicular bisector of $AC$ is
$ V_2 = N \times BC = (1, -2, 0) \times (4, 2, 1) = (-2, -1, 10) $
Now we find the intersection of the two bisectors, for which we have to solve for $t$ and $s$ the following parametric vector equation
$ (2, 0.5, 0) + t (0, 0, 5) = (3, 1, 0.5) + s (-2, -1, 10) $
Dot multiplying the above equation by a vector perpendicular to $(0, 0, 5)$ such as $(0, 1, 0)$ eliminate $t$, and results in
$ 0.5 = 1 - s $
So $ s = 0.5 $
And dot multiplying by a vector perpendicular to $(-2, -1, 10)$ such as $(0, 10, 1)$ eliminate $s$, resulting in,
$ 5 + 5 t = 10.5 $
Hence $t = 1.1 $
Hence, the circumcenter is $(2, 0.5, 5.5) $
And from this, one can compute the circumradius which turns out to be $\sqrt{\dfrac{63}{2}} $
That was my method. I appreciate comments or alternative methods.