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

 


AlffEltCharPoly

Returns the characteric polynomial of an algebraic function field element.

Syntax:

p := AlffEltMinPoly(a);

polynomial
  p  
alff element
  a  

See also:  AlffEltCharPoly

Description:

Given an alff element a in F this function computes the characteristic polynomial of a over k(T).


Example:


kash> AlffInit(FF(2,1));
"Defining global variables: k, w, kT, kTf, kTy, T, y, AlffGlobals"
kash> AlffOrders(y^3+T^3*y+T);
"Defining global variables: F, o, oi, one"
kash> a := AlffElt(o, [0,1,0]);
[ 0, 1, 0 ]
kash> p := AlffEltCharPoly(a);
> y^3 + T^3*y + T


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