CASA Function: homogeneousForm

Collects the terms of a polynomial of a certain degree.

Calling Sequence:

Parameters:

poly : polynom(anything,vars)
vars : list(name)
degree : integer

Result:

p : homogeneousPolynom(vars)

Description:

Examples:

> f := x^2+3*x*y+y;

[Maple Math]

> f2:=homogeneousForm(f,[x,y],2);

[Maple Math]

> f1:=homogeneousForm(f,[x,y],1);

[Maple Math]

> f0:=homogeneousForm(f,[x,y],0);

[Maple Math]

> evalb(f = f2+f1+f0);

[Maple Math]

See Also:

[CASA] [type/homogeneousPolynomial] [leadingForm] [homogenize]