You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to factor a multivariate polynomial in GF2[x1,x2,x3,x4]/[x1+x1^2,...] but getting the error "Only monic polynomials allowed"
I'm using the poly (x1 + x2 + x3)*(x2 + x4)*(x1 + x4) as an example, but I can't load it like that because it keeps the exponents (higher than 1) and solves it fine. In my application all my polys have exponents no greater than 1 (hence the quotient ring). So I load x1*x2*x3 + x1*x3*x4 + x2*x3*x4 + x3*x4 which is the poly mod the ideal
Trying to factor a multivariate polynomial in
GF2[x1,x2,x3,x4]/[x1+x1^2,...]
but getting the error "Only monic polynomials allowed"I'm using the poly
(x1 + x2 + x3)*(x2 + x4)*(x1 + x4)
as an example, but I can't load it like that because it keeps the exponents (higher than 1) and solves it fine. In my application all my polys have exponents no greater than 1 (hence the quotient ring). So I loadx1*x2*x3 + x1*x3*x4 + x2*x3*x4 + x3*x4
which is the poly mod the idealRepro:
Stack trace:
Apologies if I got the math terms wrong/mixed up - still learning :)
The text was updated successfully, but these errors were encountered: