up previous next
IsFiniteField

test whether a ring is a finite field

Syntax
IsFiniteField(R: RING): BOOL

Description
This function tests whether a ring is a finite field.

Example
/**/  IsFiniteField(ZZ);
false
/**/  IsFiniteField(QQ);
false
/**/  Fp::=ZZ/(7); IsFiniteField(Fp);
true

See Also