|
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
|
|
|
|
Compatibility
|
|
•
|
The PolynomialTools[Homogenize] and PolynomialTools[IsHomogeneous] commands were introduced in Maple 2018.
|
|
|
|
|