First time here? Check out the FAQ!
answered 2021-04-09 22:27:43 +0100
For displaying the polynomial, you could convert it to a power series, which are ordered the other way around:
sage: var('t'); sage: f = t^2 - t + 1 sage: R = PowerSeriesRing(QQ, 't') sage: print(R(f)) 1 - t + t^2