How would you go about solving the function: x^2+y^2- 2x + 6y + 9 = 0 in Mathematica? This function has the solution of: (x-1)^2+(y+ 3)^2 = 1, which is a circle of radius 1 centered at (1,-3).
When using the Solve[] function of:
Solve[x^2 + y^2 - 2 x + 6 y + 9 == 0 {x, y}]
I get {{y -> -3 - Sqrt[2 x - x^2]}, {y -> -3 + Sqrt[2 x - x^2]}}
which is far from my desired answer.
I know I am omitting something from the function, but cannot figure out what.
Thanks,
Mitch Sandlin