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

 


IsAlff

Returns whether an object is an algebraic function field.

Syntax:

b := IsAlff(F);

boolean
  b  
object
  F  

See also:  Alff

Description:

Given an object this function returns whether this object is an algebraic function field.


Example:


kash> AlffInit(FF(7,2));
"Defining global variables: k, w, kT, kTf, kTy, T, y, AlffGlobals"
kash> F := Alff((T^2+1)*y^3+y+T^4+1);
Algebraic function field defined by
.1^3*.2^2 + .1^3 + .1 + .2^4 + 1
over
Univariate rational function field over GF(7^2)
Variables: T

kash> IsAlff(F);
true
kash> IsAlff(1);
> false


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