There are at least 3 ways to solve this problem; none is other than messy.
First.
You can plug the 3 co-ordinates into the equation (x-h)2 + (y-k)2 = r2 to get a set of 3 simultaneous equations and solve for the 3 parameters. The problem with this method is that the equations are quadratics...so not so easy to solve.
Second
Compute the equation of the straight lines through any 2 pairs of co-ordinates.
Compute the perpendicular bisectors of these 2 lines.
The intersection of those bisectors will give you the center of the circle (h and k in the equation above).
The distance formula from the center to any of the 3 points will give you the radius (r in the equation above).
Third:
The general equation of the circle is x2 + y2 + ax +by + c = 0
Substitution of the co-ordinates into this equation yields 3 LINEAR equations which can be solved
by determinants (or any other convenient way) to get the parameters a, b and c.
The parameters h, k and r can then be obtained by completing the square on the x terms and then on the y terms.
All of these methods, as stated above, are messy, but will get you the answer.