| 1 | initial version |
Surprisingly, as the error message says, some methods do not apparently work when some variable names are prefixes to others. Here's a nasty workaround
sage: R = PolynomialRing(QQ, [chr(i+ord('a')) for i in range(11)])
sage: R
Multivariate Polynomial Ring in a, b, c, d, e, f, g, h, i, j, k over Rational Field
sage: R.ideal(R.gen(0)).groebner_fan()
Groebner fan of the ideal:
Ideal (a) of Multivariate Polynomial Ring in a, b, c, d, e, f, g, h, i, j, k over Rational Field
... you'll have to get creative when you go past 26 variables, though!
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.