[sage-support] Order of Variables of Polynomial Matters

2024-07-27 Thread 'Animesh Shree' via sage-support
I saw this behavior sage: R1. = QQ[] sage: R2. = QQ[] # Rearrange variables of R1 sage: R1 Multivariate Polynomial Ring in x, y, z over Rational Field sage: R2 Multivariate Polynomial Ring in z, x, y over Rational Field sage: R1 is R2 False sage: print(R1.gens(), R1.variable_names()) (x, y, z) ('

Re: [sage-support] Order of Variables of Polynomial Matters

2024-07-27 Thread 'Animesh Shree' via sage-support
rings/polynomial/polynomial_element.html#sage.rings.polynomial.polynomial_element.ConstantPolynomialSection> Error. On Sunday, July 28, 2024 at 3:42:28 AM UTC+5:30 Dima Pasechnik wrote: > On Sat, Jul 27, 2024 at 9:59 PM 'Animesh Shree' via sage-support > wrote: > > > > I saw this behavior > > >