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

Online Help

All Products    Maple    MapleSim


MultivariatePowerSeries

  

Multiply

  

multiply a list of power series or a list of univariate polynomial over power series or list of multivariate Puiseux series

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

p1 * p2

Multiply(P)

u1 * u2

Multiply(U)

s1 * s2

Multiply(S)

Parameters

p1, p2

-

power series generated by this package, polynomials, or complex constants

P

-

sequence of power series generated by this package, polynomials, and complex constants

u1, u2

-

univariate polynomials over power series or over Puiseux series generated by this package with the same main variable, power series generated by this package, polynomials, or complex constants

U

-

sequence of univariate polynomial over power series generated by this package with the same main variable, power series generated by this package, polynomials, and complex constants

s1, s2

-

Puiseux series generated by this package with compatible Puiseux series order, univariate polynomials over power series generated by this package with the same main variable, power series generated by this package, or polynomials

S

-

sequence of Puiseux series with compatible order, univariate polynomial over power series generated by this package with the same main variable, power series generated by this package, and polynomials

Description

• 

p1 * p2 returns the product of p1 and p2. The result is a power series.

• 

The calling sequence Multiply(P) returns the product of the factors in P.

• 

u1 * u2 returns the product of u1 and u2. The result is a univariate polynomial over power series.

• 

The calling sequence Multiply(U) returns the product of the factors in U. They are converted to univariate polynomials over power series in the same variable. If this is not possible, an error is raised. This may happen if there are univariate polynomials over power series in different variables. It can also happen if the univariate polynomials over power series all have the same main variable, say x, but one of the other arguments is a power series that is not known to be expressible as a polynomial in x. The same restrictions apply to the calling sequence u1 * u2.

• 

s1 * s2 returns the product of the Puiseux series s1 and s2. If the orders of s1 and s2 are not compatible, an error is signaled. The result is a Puiseux series.

• 

The calling sequence Multiply(S) returns the product of the factors in S. They are converted to Puiseux series. If this is not possible, an error is signaled.

• 

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.

Examples

Create two power series.

Form their product.

(1)

One can also multiply a power series with a "plain" polynomial.

(2)

We create another power series, and multiply several power series and "plain" polynomials together.

(3)

To inspect the truncation of this product to degree 2, we can use the Truncate command.

(4)

We create a univariate polynomial over power series with main variable . We can multiply such a polynomial with a power series that is known to be polynomial in .

(5)

We can also multiply this polynomial with another univariate polynomial over power series, if it is polynomial in . The two calling sequences for this are equivalent, as suggested by the fact that  and  agree up to homogeneous degree 10.

(6)

(7)

(8)

Create three Puiseux series.

(9)

(10)

(11)

We multiply  and .

(12)

We multiply  with a polynomial.

(13)

We can multiply  and the power series . The result is a Puiseux series.

(14)

We can also multiply  and the univariate polynomial over power series . The result is again a Puiseux series.

(15)

We get an error if we try to multiply  and , since the orders [x,y] and [y,x] are not compatible.

Error, the order of Puiseux series [x, y] and [y, x] are not compatible

We can use the command GetPuiseuxSeriesOrder to obtain the Puiseux series order of  and .

(16)

(17)

Finally, we create a univariate polynomial over power series from a list of Puiseux series.

(18)

Now we multiply  with .

(19)

Compatibility

• 

The MultivariatePowerSeries[Multiply] command was introduced in Maple 2021.

• 

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

• 

The MultivariatePowerSeries[Multiply] command was updated in Maple 2023.

• 

The s1, s2 and S parameters were introduced in Maple 2023.

• 

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

See Also

Exponentiate

GeometricSeries

GetPuiseuxSeriesOrder

HomogeneousPart

MainVariable

PowerSeries

PuiseuxSeries

 


Download Help Document