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.

link|improve this question

75% accept rate
Do you need all the roots? – Jonas Heidelberg Sep 19 '11 at 19:03
5  
@Paxinum Difficult to comment without a concrete example. Well, actually it is easy to write a StackOverflow comment, like this. But it won't be terribly informative absent such an example. – Daniel Lichtblau Sep 19 '11 at 19:54
2  
@Paxinum Since you're dealing with polynomials, Gröbner basis would be a good tool to solve your system. In Mathematica, this is implemented as GroebnerBasis and the "Applications" tab has an example of how to solve a system of polynomial equations. – yoda Sep 19 '11 at 20:23
3  
@yoda Reduce and Solve use Gröbner bases to solve systems of equations – belisarius Sep 19 '11 at 22:58
@belisarius Ah, I should've double checked! – yoda Sep 19 '11 at 23:03
show 2 more comments
feedback

1 Answer

up vote 0 down vote accepted

I did not find a solution, but seems like lesser number of cores is better. (Compared with 2,4 and 50 processor cores), and 64 bit architecture is 2 times faster.

All this using NSolve. System of 2 degree 17 polynomials in 2 variables took 24 hours to solve.

link|improve this answer
To reiterate, without posting a concrete example, you might as well be writing to yourself. – Daniel Lichtblau Oct 2 '11 at 3:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.