Hi! In Sage, polynomials are usually printed starting with the leading term: sage: R.<t> = ZZ[] sage: p = R.random_element() sage: p 4*t^2 + 6*t + 1
But there are people who would (at least if the context is formal power series) prefer 1 + 6*t + 4*t^2 Is there a way to switch between these to conventions? If not: What is the easiest way to transform the polynomial into something that is printed like 1 + 6*t + 4*t^2 ? Best regards, 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
