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

Online Help

All Products    Maple    MapleSim


MultiSeries

  

series

  

generalized series expansion

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

series(expr, x)

series(expr, x=a)

series(expr, x=a, n)

Parameters

expr

-

algebraic expression

x

-

name; the series variable

a

-

(optional) algebraic expression; the expansion point

n

-

(optional) non-negative integer; the expansion order

Description

• 

The series function computes a truncated series expansion of expr, with respect to the variable x, about the point a, up to order n.

• 

If a is not given, it defaults to 0. If a is infinity, then an asymptotic expansion is computed.

• 

The series function of the MultiSeries package is intended to be used in the same manner as the top-level series function.

• 

Like the series function, when the result is a power series expansion, it is returned using the series type and otherwise it is represented in ordinary sum-of-products form.

• 

The underlying engine for computing expansions is the MultiSeries[multiseries] function. In particular, the variable x is assumed to tend to its limit point a in the manner described in MultiSeries[multiseries].

• 

The precision n can be infinity. In that case, the computation will terminate either when the input is a polynomial or when it contains a O... term. This last functionality provides a way to compute an expansion up to a given absolute precision.

• 

The environment variable Order determines the default precision used in intermediate computations when the working precision n is not specified on input.

• 

In rare cases, it might be necessary to increase the value of the global variable Order in order to improve the ability of series to solve problems with significant cancellation. This is made explicit by an error message coming from multiseries.

• 

It can also happen that the result is wrong because Testzero failed to recognize that the leading coefficient of a multiseries expansion happens to be 0. In those cases, it is necessary to modify this environment variable (see Testzero).

Examples

withMultiSeries,series:

seriesx1xx2,x=0

x+x2+2x3+3x4+5x5+Ox6

(1)

seriesx+1x,x=1,3

2+x12+Ox13

(2)

seriesexpx,x=0,8

1+x+12x2+16x3+124x4+1120x5+1720x6+15040x7+Ox8

(3)

seriesexpxx,x=0,8

x−1+1+12x+16x2+124x3+1120x4+1720x5+15040x6+Ox7

(4)

seriesΓx,x=0,2

x−1γ+Ox

(5)

seriesx3x4+4x5,x=

5x54x4+1x+O1x7

(6)

seriesxx,x=0,3

1ln1xx+12ln1x2x2+Ox3

(7)

seriessqrtsinx,x=0,4

xx5212+Ox92

(8)

seriessinx+Ox10,x,

x16x3+1120x515040x7+1362880x9+Ox10

(9)

See Also

MultiSeries

MultiSeries[asympt]

MultiSeries[LeadingTerm]

MultiSeries[limit]

MultiSeries[multiseries]

Order

series

Testzero