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

 


AlffDivisorPlaces

Places and exponents of an alff divisor.

Syntax:

L := AlffDivisorPlaces(D);

list
  L  
of lists of alff places and integers
alff divisor
  D  

See also:  AlffDivisor

Description:

This function returns a list containing pairs of places and exponents as occuring in a given alff divisor.


Example:


kash> AlffInit(FF(2,3));
"Defining global variables: k, w, kT, kTf, kTy, T, y, AlffGlobals"
kash> AlffOrders(y^2+y+T^3+T);
"Defining global variables: F, o, oi, one"
kash> D := AlffDivisor(AlffElt(o, [0, 1]));
Alff divisor
[ [ Alff place < [ T, 0 ], [ 0, 1 ] >, 1 ],
[ Alff place < [ T + 1, 0 ], [ 0, 1 ] >, 2 ],
[ Alff place < [ 1/T, 0 ], [ 0, 1 ] >, -3 ] ]

kash> AlffDivisorPlaces(D);
> [ [ Alff place < [ T, 0 ], [ 0, 1 ] >, 1 ], 
  [ Alff place < [ T + 1, 0 ], [ 0, 1 ] >, 2 ], 
  [ Alff place < [ 1/T, 0 ], [ 0, 1 ] >, -3 ] ]


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