MultivariatePowerSeries
HomogeneousPart
compute the homogeneous part of a power series for a particular degree
Calling Sequence
Parameters
Description
Examples
Compatibility
HomogeneousPart(p, deg)
p
-
power series generated by this package
deg
the degree of the requested homogeneous part
The command HomogeneousPart(p,deg) returns the homogeneous part of p of degree deg, that is, the sum of all terms of p with total degree deg.
If deg is greater than the precision of p, calling this function has the side effect of updating the precision of p to be at least deg.
When using the MultivariatePowerSeries package, do not assign anything to the variables occurring in the power series, Puiseux series, and univariate polynomials over these series. If you do, you may see invalid results.
with⁡MultivariatePowerSeries:
We define a power series, a.
a≔GeometricSeries⁡x,y,z:
It is initially known to precision 1.
Precision⁡a
1
We compute its homogeneous part of degree 3.
HomogeneousPart⁡a,3
x3+3⁢x2⁢y+3⁢x2⁢z+3⁢x⁢y2+6⁢x⁢y⁢z+3⁢x⁢z2+y3+3⁢y2⁢z+3⁢y⁢z2+z3
The precision is now 3.
3
The MultivariatePowerSeries[HomogeneousPart] command was introduced in Maple 2021.
For more information on Maple 2021 changes, see Updates in Maple 2021.
See Also
GeometricSeries
Precision
Truncate
UpdatePrecision
Download Help Document