On Jan 25, 2:26 pm, Peter Luschny <[email protected]> wrote: > Hi, with Sage Notebook Version 4.7.2: > > Z0 = 1118557440*x^5 + 180204024*x^4 + 15195180*x^3 + > 523250*x^2 + 4095*x + 1 > Z1 = 4115105280L*x^6 + 1118557440*x^5 + 180204024*x^4 + 15195180*x^3 + > 523250*x^2 + 4095*x + 1 > > print Z0.coefficients(x) # this works; > print Z1.coefficients(x) # this gives: TypeError: ECL says: THROW: The > catch MACSYMA-QUIT is undefined. > > Peter
sage: Z1.polynomial(QQ).coefficients() [1, 4095, 523250, 15195180, 180204024, 1118557440, 4115105280] -- To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org
