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

 


PolySwapVars

Changes the variables of the given bivariate polynomial.

Syntax:

g := PolySwapVars (f);

polynomial
  g  
polynomial
  f  

Description:

no detailed description available yet


Example:


kash> Zxy := PolyAlg(Zx);
Univariate Polynomial Ring in y over Univariate Polynomial Ring in x over Inte\
ger Ring

kash> f := Poly(Zxy,[1,2*x+4,x^2 +x,6*x]);
y^3 + (2*x + 4)*y^2 + (x^2 + x)*y + 6*x
kash> PolySwapVars(f);
> x*y^2 + (2*x^2 + x + 6)*y + x^3 + 4*x^2


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