Determine the radical centre of the spheres $x^2+y^2+z^2+2x+2y+2z+2=0,x^2+y^2+z^2+4y=0,x^2+y^2+z^2+3x-2y+8z+6=0,x^2+y^2+z^2-x+4y-6z-2=0.$
I tried solving the problem by assuming $S_1=x^2+y^2+z^2+2x+2y+2z+2,S_2=x^2+y^2+z^2+4y,S_3=x^2+y^2+z^2+3x-2y+8z+6,S_4=x^2+y^2+z^2-x+4y-6z-2.$ Now, the radical plane of the $3$ spheres $S_1,S_2,S_3$ are $S_1-S_2=0,S_2-S_3=0,S_3-S_1=0.$ Now, these radical planes, intersect at the straight line $S_1=S_2=S_3.$ Thus, the radical axis of $S_1,S_2,S_3$ is $S_1=S_2=S_3.$ Similarly, the other possible radical axis of the spheres taken three at a time are: $S_1=S_2=S_4,S_1=S_3=S_4,S_2=S_3=S_4.$ Thus, the $4$ radical axis are $S_1=S_2=S_3,$$S_1=S_2=S_4,S_1=S_3=S_4,S_2=S_3=S_4.$ Now, the point where these $4$ radical lines intersects is called the radical centre. But how to calculate $C$ ? If we try to solve these $4$ equations, then I think we should require a fast processing and computing software or otherwise it becomes a tremendously huge calculation. Is there any shorter way to determine the radical centre $C$ using only elementary analytic geometry of spheres ?
R=QQ[x,y,z]s1=x^2+y^2+z^2+2*x+2*y+2*z+2s2=x^2+y^2+z^2+4*ys3=x^2+y^2+z^2+3*x-2*y+8*z+6s4=x^2+y^2+z^2-x+4*y-6*z-2I=ideal(s1-s2,s1-s3,s1-s4)primaryDecomposition I -- {ideal (10z + 3, 2y - 1, 5x + 1)}But I suppose you'd like a proof that these differences all give the same ideal. – Jan-Magnus Økland Jan 30 '23 at 14:04