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

 


FFCreate

Creates a finite field.

Syntax:

FFCreate(O,p,k)

order
  O  
integer
  p  
integer
  k  

See also:  kantff

Description:

The finite field with p^{ k} elements is created and stored in O. This routine differs from FunFF in that it only allows one way of generating the field; however, it has the advantage that one can work relatively.


Example:


kash> O:=OrderMaximal(Poly(Zx,[1,0,-4,0,1]));
Generating polynomial: x^4 - 4*x^2 + 1
Discriminant: 2304 

kash> FFCreate(O, 3, 4);
> Finite field of size 3^4


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