Ask Your Question

blishko's profile - activity

2024-06-07 10:28:45 +0200 received badge  Notable Question (source)
2024-06-07 10:28:45 +0200 received badge  Popular Question (source)
2023-03-02 22:32:01 +0200 received badge  Taxonomist
2016-12-23 18:47:29 +0200 received badge  Student (source)
2016-08-25 10:01:30 +0200 received badge  Famous Question (source)
2015-01-22 11:50:59 +0200 received badge  Notable Question (source)
2014-01-28 04:50:01 +0200 received badge  Popular Question (source)
2013-08-02 04:03:30 +0200 asked a question libSingular Groebner basis computation time limit

I would like to put a time limit on computation of Groebner basis in libSingular, but I have trouble finding out how to do that. I know Singular command groebner takes a second argument, which would do exactly that, but I don't know how to pass it there from SAGE. Is there a way to do that?

2013-06-23 11:16:01 +0200 asked a question Solving system of polynomial equation over finite field

Hello,

I am working in multivariate polynomial rings over small finite fields (with less then 15, or currently less than 10 elements). I have an algorithm, that outputs a system of equations. I need to find out if the system has a solution and if so, to find one. I am using calculation of groebner basis for this. But since my system typically has 20 or more variables and quite complicated polynomials, it seems that SINGULAR has problem to find the basis in reasonable time. Is there a way to speed up the calculation? For example, since I work in finite field, I can try all possible values for some variable. This simplifies the system and in some cases it seems to really help SINGULAR. But I can do that for only a very few variables.

Currently I work in PolynomialRing and before the grobner basis algorithm, I reduce my polynomials by FieldIdeal (x_0^n - x_0, ..., x_m^n - x_m) of the polynomial ring and add this equations to the system, to force the solution in the finite field. I tried to work in the quotient ring from the start, but it looks like it slowed down my whole algorithm and also slowed down the computation of the groebner basis (which is a little suprising for me). I found that for GF(2) PolyBoRi is optimized for the kind of work I need, but I am not restricted to GF(2). Is there something similar for other finite fields?

I would appreciate any tips how to speed up the whole process. Thank you.

2013-06-11 03:39:19 +0200 commented answer Polynomial Ring bug?

I did, but I don't see it. Could you point me to the sentence that answers my question?

2013-06-10 03:57:57 +0200 commented answer Polynomial Ring bug?

I edited the question. There is a case that fits your last situation, and it does not raise an error. I would like to know the difference.

2013-06-10 03:56:09 +0200 received badge  Editor (source)
2013-06-09 12:14:51 +0200 asked a question Polynomial Ring bug?

I would like to ask, why following code ends with error:


R = PolynomialRing(GF(3),'x3,x5,x4,x7,x6')

U = PolynomialRing(GF(3), 'x2, x5, x4, x1, x0, x6')

f = U.gens()[1] + U.gens()[2]

g = R(f)


because when I remove x0 from the generators, it works fine.


R = PolynomialRing(GF(3),'x3,x5,x4,x7,x6')

U = PolynomialRing(GF(3), 'x2, x5, x4, x1, x6')

f = U.gens()[1] + U.gens()[2]

g = R(f)


Thanks for the answer, but there is still an open question. I have been working with this for a few days, and up untill this case, I had no trouble getting the same polynomial in a ring with fewer genarators, if the original polynomial contained only those. I tried and the followng code works fine, and it also fits your last case which according to you should raise an error, because U has more generators than R.


R = PolynomialRing(GF(3),'x5,x4,x7,x6')

U = PolynomialRing(GF(3), 'x2, x5, x4, x1, x6')

f = U.gens()[1] + U.gens()[2]

g = R(f)