In $Z[x]$, which pairs of $a,b$ commute as modulo operators, such that ($c$ mod $a$) mod $b =$ ($c$ mod $b$) mod $a$ for every $c$?
What I got so far is:
Clearly the equasion holds for every pair where one polynomial divides the other.
Another group of pairs are these with $deg(a)=0$ and lead_coeff$(b)=1$.
However, especially the second group seems pretty arbitrary, and it feels like I am missing the bigger picture. Is there a neccessary and sufficient condition for $a,b$?
c mod ais defined like inZ: The smallest positive r such that c=ba+r. In other words, you do polynomial division and output the rest.3xnever fits intox^2inZ[X], sox^2 mod 3x=x^2. A better example would be `(7x^2-3) mod (2x+1): (7x^2-3)=(2x+1)(3x-2)+(x^2+x-1) -> result:(x^2+x-1)`. – Max Aug 05 '14 at 12:45(a mod b)inZ[x]should be the representative ofainZ[x]/b. Can we derive the definition from that? – Max Aug 05 '14 at 13:19