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

Online Help

All Products    Maple    MapleSim


OrthogonalSeries

  

Multiply

  

multiply two series

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Multiply(S1, S2)

Parameters

S1

-

finite orthogonal series

S2

-

orthogonal series

Description

• 

The Multiply(S1, S2) function multiplies the series S2 by the finite series S1. The routine uses an adaptation of the Horner scheme.

• 

The result is expanded in terms of the polynomials of S2.

• 

This command is part of the OrthogonalSeries package, so it can be used in the form Multiply(..) only after executing the command with(OrthogonalSeries). However, it can always be accessed through the long form of the command by using OrthogonalSeries[Multiply](..).

Examples

withOrthogonalSeries:

S1ChangeBasis1+x2,LaguerreLn,13,x

S137LaguerreL0,13,x914LaguerreL1,13,x3+2LaguerreL2,13,x

(1)

S2Createum,Charlierm,17,x

S2m=0umCharlierm,17,x

(2)

MultiplyS1,S1

4225LaguerreL0,13,x813892LaguerreL1,13,x27+532LaguerreL2,13,x3104LaguerreL3,13,x+24LaguerreL4,13,x

(3)

SimplifyCoefficientsMultiplyS1,S2,collect,u

57u0499u17+2u2Charlier0,17,x+134u1499u04946u27+6u3Charlier1,17,x+m=25749+47m+m2um+um249+5492m7um1+237m972m2um+1+m2+3m+2um+2Charlierm,17,x

(4)

MultiplyS2,S2

Error, (in OrthogonalSeries:-Multiply) The first series  must be finite

See Also

LaguerreL

OrthogonalSeries

OrthogonalSeries[ChangeBasis]

OrthogonalSeries[Create]

OrthogonalSeries[SimplifyCoefficients]