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.
Another way to obtain the coordinates of the circumcenter is to get the intersection point of the plane $ABC$, the perpendicular bisector of $AB$ and the perpendicular bisector of $AC$.
The equation of the plane $ABC$ is
$\begin{vmatrix}x-x_A&y-y_A&z-z_A\\x_B-x_A&y_B-y_A&z_B-z_A\\x_C-x_A&y_C-y_A&z_C-z_A\end{vmatrix}=0\quad,$
$\begin{vmatrix}x-1&y&z\\2&1&0\\4&2&1\end{vmatrix}=0\quad,$
$x-2y-1=0\;.$
The equation of the perpendicular bisector of $AB$ is
$\left(x\!-\!x_A\!\right)^2\!+\!\left(y\!-\!y_A\!\right)^2\!+\!\left(z\!-\!z_A\!\right)^2\!=\!\left(x\!-\!x_B\!\right)^2\!+\!\left(y\!-\!y_B\!\right)^2\!+\!\left(z\!-\!z_B\!\right)^2\;,$
$\left(x-1\right)^2+y^2+z^2=\left(x-3\right)^2+\left(y-1\right)^2+z^2\;,$
$4x+2y-9=0\;.$
The equation of the perpendicular bisector of $AC$ is
$\left(x\!-\!x_A\!\right)^2\!+\!\left(y\!-\!y_A\!\right)^2\!+\!\left(z\!-\!z_A\!\right)^2\!=\!\left(x\!-\!x_C\!\right)^2\!+\!\left(y\!-\!y_C\!\right)^2\!+\!\left(z\!-\!z_C\!\right)^2\;,$
$\left(x-1\right)^2+y^2+z^2=\left(x-5\right)^2+\left(y-2\right)^2+\left(z-1\right)^2\;,$
$8x+4y+2z-29=0\;.$
Hence, we get the coordinates of the circumcenter by solving the following system of equations :
$\begin{cases}x-2y-1=0\\4x+2y-9=0\\8x+4y+2z-29=0\end{cases}$
By adding both sides of the first and the second equation, we obtain that
$5x-10=0\;\;$ that is $\;\;x=2\,.$
Consequently, from the first equation we obtain that $\;y=\dfrac12\,.$
Finally, from the third equation we obtain that $\;z=\dfrac{11}2\,.$
Therefore the coordinates of the circumcenter are :
$\left(2,\dfrac12,\dfrac{11}2\right)\,.$