MultivariatePowerSeries/GetAnalyticExpression - Maple Help

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : MultivariatePowerSeries/GetAnalyticExpression

MultivariatePowerSeries

  

GetAnalyticExpression

  

Get an analytic expression for a power series or a univariate polynomial over power series

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

GetAnalyticExpression(p)

GetAnalyticExpression(u)

Parameters

p

-

power series generated by this package

u

-

univariate polynomial over power series generated by this package

Description

• 

The command GetAnalyticExpression(p) returns the analytic expression of the power series p, if it is known, or undefined if it is not known.

• 

The power series that have a known analytic expression are the following:

– 

those created with the commands GeometricSeries and SumOfAllMonomials;

– 

those created with the command PowerSeries from a polynomial, or from a procedure while specifying the analytic expression explicitly;

– 

those obtained by applying arithmetic operations (addition, multiplication, inversion, exponentiation) to power series whose arithmetic expression is known.

• 

The command  GetAnalyticExpression(u) returns the analytic expression of univariate polynomial u over power series, if it is known. This is determined in the natural way from the analytic expressions of each coefficient of u.

• 

If an analytic expression is known for a power series, it is part of the default display of that power series. This is not the case for univariate polynomials for power series.

• 

When using the MultivariatePowerSeries package, do not assign anything to the variables occurring in the power series and univariate polynomials over power series. If you do, you may see invalid results.

Examples

withMultivariatePowerSeries:

Create a geometric power series in x and y. Extract its analytic expression.

aGeometricSeriesx,y:

GetAnalyticExpressiona

11xy

(1)

Create a power series for a rational function. Extract its analytic expression.

bInversePowerSeries3+2x+y:

GetAnalyticExpressionb

13+2x+y

(2)

Define the product of a and b. Its analytic expression is known because the analytic expressions for both a and b are known.

cab

cPowⅇrSⅇrⅈⅇs of 11xy3+2x+y : 13+

(3)

GetAnalyticExpressionc

11xy3+2x+y

(4)

Below, e and f are defined as the same power series, but f knows its analytic expression and e doesn't.

ePowerSeriesdxdd!,variables=x

ePowⅇrSⅇrⅈⅇs: 1+

(5)

GetAnalyticExpressione

undefined

(6)

fPowerSeriesdxdd!,analytic=expx

fPowⅇrSⅇrⅈⅇs of ⅇx : 1+

(7)

GetAnalyticExpressionf

ⅇx

(8)

If we create power series from e and f by arithmetic operations, then those involving e do not know their analytic expressions, but those involving f do (if the other power series involved know their analytic expressions). Below, g and h represent the same power series, but because h used f rather than e in its definition, it knows its analytic expression.

ga+be

gPowⅇrSⅇrⅈⅇs: 43+

(9)

GetAnalyticExpressiong

undefined

(10)

ha+bf

hPowⅇrSⅇrⅈⅇs of 11xy+13+2x+yⅇx : 43+

(11)

GetAnalyticExpressionh

11xy+13+2x+yⅇx

(12)

If we create a univariate polynomial over power series, it will know its analytic expression if each of the coefficients of the main variable knows its analytic expression. Below, v knows its analytic expression, but u doesn't.

uUnivariatePolynomialOverPowerSeriesa,b,e,z

uUnⅈvarⅈatⅇPolynomⅈalOvⅇrPowⅇrSⅇrⅈⅇs: 1+x+y++13+z+1+z2

(13)

GetAnalyticExpressionu

undefined

(14)

vUnivariatePolynomialOverPowerSeriesa,b,f,z

vUnⅈvarⅈatⅇPolynomⅈalOvⅇrPowⅇrSⅇrⅈⅇs: 1+x+y++13+z+1+z2

(15)

GetAnalyticExpressionv

11xy+z3+2x+y+ⅇxz2

(16)

Compatibility

• 

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

• 

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

See Also

Display

GeometricSeries

Inverse

Multiply

PowerSeries

SumOfAllMonomials