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

 


InftyVal

Returns the degree valuation of a rational function or a Puiseux series defined over a finite field.

Syntax:

n := InftyVal(a);

integer
  n  
quotient field element
  a  
of FF_q(x)

See also:  InftyQuotRem, InftyGcd, InftyLcm, AlffRoots

Description:

This function computes the degree valuation \nu_\infty(a) of an element a \in FF_q(x)^\times or a \in FF_q((x^{-1/e})) (the negative degree).


Example:


kash> k := FF(5, 2);
Finite field of size 5^2
kash> kx := PolyAlg(k);
Univariate Polynomial Ring in x over GF(5^2)

kash> x := Poly(kx, [1,0]);
x
kash> InftyVal(x);
-1
kash> InftyVal((x^2+x)^-1);
2


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