The following yields an error:
sage: R.<x> = Integers(4)[]
sage: Q.<a> = R.quotient(2*x)
...
TypeError: polynomial must have unit leading coefficient
How can I make it work?
1 | initial version |
The following yields an error:
sage: R.<x> = Integers(4)[]
sage: Q.<a> = R.quotient(2*x)
...
TypeError: polynomial must have unit leading coefficient
How can I make it work?
2 | retagged |
The following yields an error:
sage: R.<x> = Integers(4)[]
sage: Q.<a> = R.quotient(2*x)
...
TypeError: polynomial must have unit leading coefficient
How can I make it work?