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

 


AlffEltIsInIdeal

Checks whether a function field element is in an ideal.

Syntax:

b := AlffEltIsInIdeal(a, I);

boolean
  b  
alff order element
  a  
alff order ideal
  I  

Description:

no detailed description available yet


Example:

Some computations:

kash> AlffInit(FF(5,2));
"Defining global variables: k, w, kT, kTf, kTy, T, y, AlffGlobals"
kash> AlffOrders(y^3+T^4+1);
"Defining global variables: F, o, oi, one"
kash> I := T*o;
< [ T, 0, 0 ] >
kash> AlffEltIsInIdeal(T, I);
true
kash> AlffEltIsInIdeal(1/T, I);
false
kash> a := AlffElt(o, [0, 1, 0]);
[ 0, 1, 0 ]
kash> I := a*o;
< [ 0, 1, 0 ] >
kash> AlffEltIsInIdeal(T+w, I);
> false


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