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

 


QfeDen

This function returns the denominator of a rational function (quotient field element). Works also for polynomials.

Syntax:

d := QfeDen(f);

quotient field elements
  d,f  

See also:  QfeNum, Num, Den

Description:

no detailed description available yet


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> f := x;
x
kash> g := x+1;
x + 1
kash> h := f/g;
x/(x + 1)
kash> QfeDen(h);
x + 1


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