| 1 | initial version |
Usually, this goes like that
sage: x,y,z = polygens(QQ, 'x,y,z')
sage: P = x**3+y**3+z**3
sage: R = x.parent()
sage: I = R.ideal([P] + [P.derivative(var) for var in R.gens()])
sage: I.dimension()
0
sage: I.vector_space_dimension()
8
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.