I am trying to solve this problem:
Use Newton's method to find the intersection points of the two circles defined by
$$x^2 + y^2 = 2, \quad (x-1)^2 + (y+1.5)^2 = 1.$$
I used this code in Maple:
Newton(4+(-y^2+2)*(2*y+3)^2-4*(-y^2+2), y = .5, output = sequence);
and this gave me:
.5, -1.062500000, -.7532718336, -1.001899321, -.5138663374,
-.7942990696, -1.069866630, -.7693943666, -1.025772773,
-.6418803790, -.8854387837
From this I do not understand what the solution is, and also how can I choose my initial value more accurately?