MultivariatePowerSeries
GeometricSeries
create the geometric series over a set of variables
Calling Sequence
Parameters
Description
Examples
Compatibility
GeometricSeries(x)
x
-
variable, or nonempty list of variables
GeometricSeries(x) creates the geometric power series in x.
If x has more than one element then the result is the geometric series in the sum of the variables in x.
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 create the geometric power series in x, that is, the power series for 11+x.
a≔GeometricSeries⁡x
a≔PowⅇrSⅇrⅈⅇs of 11−x : 1+x+…
If we truncate a at homogeneous degree 5, this is what we obtain.
Truncate⁡a,5
x5+x4+x3+x2+x+1
We create the geometric power series in x+y, that is, the power series for 11+x+y.
b≔GeometricSeries⁡x,y
b≔PowⅇrSⅇrⅈⅇs of 11−x−y : 1+x+y+…
The homogeneous part of b of degree 4 is the following expression.
HomogeneousPart⁡b,4
x4+4⁢x3⁢y+6⁢x2⁢y2+4⁢x⁢y3+y4
If we truncate b at homogeneous degree 3, this is what we obtain.
Truncate⁡b,3
x3+3⁢x2⁢y+3⁢x⁢y2+y3+x2+2⁢x⁢y+y2+x+y+1
The MultivariatePowerSeries[GeometricSeries] command was introduced in Maple 2021.
For more information on Maple 2021 changes, see Updates in Maple 2021.
See Also
HomogeneousPart
PowerSeries
SumOfAllMonomials
Truncate
Download Help Document