I construct the ideal I generated from the three boolean polynomials
f1,f2 and f3:

sage: B.<x0,x1,x2> = BooleanPolynomialRing(3)
sage: f1 = x0*x1 + x2
sage: f2 = x1*x2
sage: f3 = x0*x1*x2 + x0*x2
sage: I = ideal(f1,f2,f3)
sage: I
Ideal (x0*x1 + x2, x1*x2, x0*x1*x2 + x0*x2) of Boolean PolynomialRing
in x0, x1, x2
sage:

Now I would like to see all the elements of the constructed ideal I.
How can I do that in Sage?

Thanks!
--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sage-support
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---

Reply via email to