Reducing a Set of Polynomial Equations to Minimal Variables and Equations

asked 11 years ago

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 fi is a function of n2 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!

Preview: (hide)

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 ( 11 years ago )
1

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

kcrisman gravatar imagekcrisman ( 11 years ago )