I am trying to find intersection points of two curves
syms x y
g(x) = 20*(exp(-(x+30)/3.5)-1);
[sol_x, sol_y] = solve((x+22.3097)^2+(y+16.2497)^2 == 25, y == g(x),x,y,'Real',true) ;
It is giving only one solution. But according to the plot of the two equations, there should be two intersection points. How can I rectify this problem?