Homogenize - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


PolynomialTools

  

Homogenize

  

homogenize a multivariate polynomial

  

IsHomogeneous

  

check if a multivariate polynomial is homogeneous

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

Homogenize(f, v)

Homogenize(f, v, X)

Homogenize(f, v, X, W)

IsHomogeneous(f)

IsHomogeneous(f, X)

IsHomogeneous(f, X, W)

Parameters

f

-

multivariate polynomial, or list or set of multivariate polynomials

v

-

name or list of the form [name,posint]; the homogenization variable

X

-

(optional) list or set of names; variables w.r.t. which f is homogenized

W

-

(optional) list of nonnegative integers; weights

Description

• 

The Homogenize(f, v) command homogenizes the polynomial , by multiplying each term of  by an appropriate power of . The result is a polynomial  in the same variables as  plus one more variable , such that all terms of  have the same total degree, which equals the total degree of .

• 

The homogenization variable  must be a new variable that does not appear in .

• 

The IsHomogeneous(f) command checks if the polynomial  is homogeneous, i.e., all terms have the same total degree. If so, it returns , and  otherwise.

• 

The Homogenize(f, v, X) command homogenizes the polynomial  only w.r.t. the subset of the variables given by . The resulting polynomial will be homogeneous in the variables . The two-argument command Homogenize(f, v) is equivalent to Homogenize(f, v, indets(f,name)).

• 

The IsHomogeneous(f, X) command checks if the polynomial  is homogeneous w.r.t. the subset of the variables given by . The one-argument command IsHomogeneous(f) is equivalent to IsHomogeneous(f, indets(f,name)).

• 

The Homogenize(f, v, X, W) calling sequence performs a weighted homogenization, with weight  given to variable . If , then the homogenization variable  is given weight . Note that in this case the result may contain fractional powers of .

• 

The IsHomogeneous(f, X, W) command checks if the polynomial is weighted-homogeneous, with weight  given to variable .

• 

If  is a set or list of polynomials, then each element of  will be homogenized / checked for homogeneity.

Examples

(1)

(2)

(3)

(4)

(5)

(6)

(7)

(8)

(9)

(10)

(11)

(12)

(13)

(14)

(15)

Compatibility

• 

The PolynomialTools[Homogenize] and PolynomialTools[IsHomogeneous] commands were introduced in Maple 2018.

• 

For more information on Maple 2018 changes, see Updates in Maple 2018.

See Also

PolynomialTools

 


Download Help Document