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

Online Help

All Products    Maple    MapleSim


MultivariatePowerSeries

  

GetAnalyticExpression

  

get an analytic expression for a power series or a univariate polynomial over power series or a Puiseux series

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

GetAnalyticExpression(p)

GetAnalyticExpression(u)

GetAnalyticExpression(s)

Parameters

p

-

power series generated by this package

u

-

univariate polynomial over power series or over Puiseux series generated by this package

s

-

Puiseux 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 or over a Puiseux series, if it is known. This is determined in the natural way from the analytic expressions of each coefficient of s.

• 

The command GetAnalyticExpression(s) returns the analytic expression a Puiseux series s, if it is known. This is determined by taking the analytic expressions of its internal power series and applying the change of variables to it.

• 

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

• 

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

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)

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

sPuiseuxSeriesPowerSeries11+U,U=x13y2,x=3,y=4

sPuⅈsⅇuxSⅇrⅈⅇs of x31+y2x13y4 : x3y4+

(17)

GetAnalyticExpressions

x31+y2x13y4

(18)

We can get the internal power series of s, get its analytic expression, apply the change of variables given by U=y2x13 and multiply this by x3y4.

pGetPowerSeriess

pPowⅇrSⅇrⅈⅇs of 11+U : 1+

(19)

x3y4evalGetAnalyticExpressionp,U=x13y2

x31+y2x13y4

(20)

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

hUnivariatePolynomialOverPuiseuxSeriesPuiseuxSeries1,PuiseuxSeries0,PuiseuxSeriesx,x=x13,PuiseuxSeriesy,y=y12,PuiseuxSeriesx+y1+x+y,x=xy12,y=xy1,z

hUnⅈvarⅈatⅇPolynomⅈalOvⅇrPuⅈsⅇuxSⅇrⅈⅇs: 1+0z+x13z2+yz3+0+z4

(21)

We get the analytic expression of h.

GetAnalyticExpressionh

1+x13z2+yz3+xy+xyz41+xy+xy

(22)

Compatibility

• 

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

• 

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

• 

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

• 

The s parameter was introduced in Maple 2023.

• 

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

See Also

Display

GeometricSeries

GetPowerSeries

Inverse

Multiply

PowerSeries

PuiseuxSeries

SumOfAllMonomials