Torsten has answered your question perfectly well, I think. No solution exists for that problem as posed. But suppose you had a slightly different problem? How would you go about it? First, an example where a pair of solutions exists.
C1 = (x - 2)^2 + (y - 3)^2 == 12;
C2 = (x + 1)^2 + (y + 2)^2 == 8;
We can see two solutions where the circles cross.
xy = solve([C1,C2],[x,y])
xy =
x: [2x1 sym]
y: [2x1 sym]
[xy.x,xy.y]
ans =
double([xy.x,xy.y])
ans =
1.3317 -0.3990
-0.6847 0.8108
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
Each row corresponds to a solution. If no solution exists, then the solutions will be complex.
D1 = (x - 2)^2 + (y - 3)^2 == 5;
D2 = (x + 1)^2 + (y + 2)^2 == 8;
xyD = solve([D1,D2],[x,y])
xyD =
x: [2x1 sym]
y: [2x1 sym]
[xyD.x,xyD.y]
ans =
Do you see what happens? Now the solutions are complex. No real solutions exist where the circles intersect.
Could you have done this using pencil and paper? Well, in fact yes. Hint: subtract the two equations, thus C1-C2, and simplify. The result will be linear. You can use that to eliminate one of the variables from one of the circles.