[back] [prev] [next] [index] [root]

 


IdealRemainderSet

Computes a remainder system of an ideal

Syntax:

L:= IdealRemainderSet(I);

list
  L  
ideal
  I  

See also:  IdealNorm

Description:

This function returns a list with the complete remainder set of an ideal in an order


Example:


kash> O:=Order(Poly(Zx,[1,0,2,4,58]));
Generating polynomial: x^4 + 2*x^2 + 4*x + 58

kash> E:=Elt(O,[1,2,-1,-2]);
[1, 2, -1, -2]
kash> I:=Ideal(3,E^7);
<3, [-470899145529, -57698441418, 37053141409, 29584796218]>
kash> IdealRemainderSet(I);
> [ -1, 0, 1 ]


<- back[back] [prev] [next] [index] [root]