I have a system consisting of 2 polynomials, in 2 variables, with complex coefficients. The general case consists of a finite number of pairs of complex numbers.
NSolve[{poly1==0,poly2==0},{x,y}]
in Mathematica works for lower degree polynomials, but the time needed to find all roots seems to be exponential, 2^deg. Is there an alternative to NSolve, which is more efficient? In other language? The degree we're aiming for is in the range 15-25, higher is better.