Re: Polynomdivision with coefficients in Z_n

[email protected] Tue, 25 Nov 2014 00:54:29 +0100
Newsgroups gmane.comp.mathematics.axiom.general
Message-ID <20141125005429.Horde.IGfuAU5agxlhGOL6ucAa_g2@webmail.in-berlin.de>
Quoting Ralf Hemmecke <[email protected]>:

> On 11/25/2014 12:17 AM, Ralf Hemmecke wrote:
>> For non-prime-powers use IntegerMod.
>
> Oh, but wait... you still have not specified what you meant by "to
> divide polynoms".


I meant something like


  (t^2 + t) / t  = t + 1



or in fricas:


(6) -> (t^2+t) / t

    (6)  t + 1
                                           Type: Fraction(Polynomial(Integer))
(7) ->


But the modulo part was, what I did not knew how to specify.