To find the center and radius of a sphere from the general equation \(x^2+y^2+z^2+2ux+2vy+2wz+d=0\), the center is \((-u, -v, -w)\) and the radius is \(R = \sqrt{u^2+v^2+w^2-d}\). This is faster than completing the square. In our case, \(2u=-2 \implies u=-1\), \(2v=-2 \implies v=-1\), \(2w=-2 \implies w=-1\), and \(d=-6\). Center is (1,1,1), Radius is \(\sqrt{(-1)^2+(-1)^2+(-1)^2 - (-6)} = \sqrt{1+1+1+6} = \sqrt{9} = 3\).