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

 


PolyMoveIntegral

Returns the polynomial moved to integral coefficients.

Syntax:

g := PolyMoveIntegral(f);

polynomial
  f  
polynomial
  g  

See also:  PolyMove

Description:

Given a polynomial defined over the quotient field of R such that the denominators of the coefficients are all one, the function returns this polynomial defined over R.


Example:


kash> a := 2*(x/2);
x
kash> PolyAlg(a);
Univariate Polynomial Ring in x over Rational Field

kash> b := PolyMoveIntegral(a);
x
kash> PolyAlg(b);
> Univariate Polynomial Ring in x over Integer Ring



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