Hi Juan, On 5 Nov., 04:38, juaninf <[email protected]> wrote: > F.<a> = GF(2^(4)) > PR = PolynomialRing(F,'X') > M = vector(PR,8) > #get a g1 > g1 = (X + 1) * ...
Is that really the code? X is not defined, and thus the attempt to define g1 in terms of X should result in a name error. You just did PR = PolynomialRing(F,'X'), which defines PR, but does not define X. Cheers, Simon -- 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
