Macaulay2 » Documentation
Packages » Macaulay2Doc :: quotientRemainder(RingElement,RingElement)
next | previous | forward | backward | up | index | toc

quotientRemainder(RingElement,RingElement) -- quotient and remainder

Synopsis

Description

i1 : R = QQ[x,y];
i2 : (q,r) = quotientRemainder(x^10+5,x-2);
i3 : q

      9     8     7     6      5      4      3       2
o3 = x  + 2x  + 4x  + 8x  + 16x  + 32x  + 64x  + 128x  + 256x + 512

o3 : R
i4 : r

o4 = 1029

o4 : R
i5 : q*(x-2)+r

      10
o5 = x   + 5

o5 : R

Ways to use this method: