Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

answered 11 years ago

Volker Braun gravatar image

See also http://trac.sagemath.org/sage_trac/ticket/11856. You either use less variables so that there is enough space for the bit-packed variables

sage: R.<x,y> = QQ[]
sage: x**(2**28 - 2)
x^268435454

or you use the symbolic ring. Its not like you have memory for a dense polynomial of that degree anyways...

click to hide/show revision 2
No.2 Revision

See also http://trac.sagemath.org/sage_trac/ticket/11856. You either use less variables so that there is enough space for the bit-packed variablesexponents

sage: R.<x,y> = QQ[]
sage: x**(2**28 - 2)
x^268435454

or you use the symbolic ring. Its not like you have memory for a dense polynomial of that degree anyways...