Reducing a Set of Polynomial Equations to Minimal Variables and Equations

asked 2013-06-03 19:23:57 +0200

Samuel Reid gravatar image

I have a list of polynomial equations equal to zero, lets call it

equations = [f1 == 0, f2 == 0, ..., fn ==0]

I know that each polynomial $f_{i}$ is a function of $n^2$ variables where $n$ is determined by input from the user. Is there any way that I can reduce this system of polynomial equations in Python (or with a Sage package) to a minimal number of polynomials and variables?

I tried looking up Grobner basis (http://www.sagemath.org/doc/construct...) but it does not seem to be working for what I want as it doesn't check out correctly with the analytical math I have been doing. Thanks!

edit retag flag offensive close merge delete

Comments

See also [this stackoverflow post](http://stackoverflow.com/questions/16906626/reducing-a-set-of-polynomial-equations-to-minimal-variables-and-equations-in-pyt).

kcrisman gravatar imagekcrisman ( 2013-06-03 22:27:07 +0200 )edit
1

I think that anyone answering this would need more details. Can you post something on e.g. pastebin?

kcrisman gravatar imagekcrisman ( 2013-06-03 22:27:52 +0200 )edit