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

Online Help

All Products    Maple    MapleSim


MultiSeries

  

limit

  

calculate limit

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

limit(f,x=a,dir)

Parameters

f

-

algebraic expression

x

-

name

a

-

algebraic expression; limit point, possibly infinity, or -infinity

dir

-

(optional) direction of the expansion; one of left, right, real, complex or fromtheorigin

Description

• 

The limit(f,x=a) function computes the limiting value of f as x approaches a.

• 

The limit function of the MultiSeries package is intended to be used in the same manner as the top-level limit function. However, its output cannot be a range.

• 

The default direction of the limit is two-sided along a line through a and parallel to the real axis. This can be changed by supplying the optional argument dir:

  

If dir is left or right, a one-sided limit along a ray originating at a and parallel to the real axis is computed.

  

Specifying real as third argument is equivalent to the default behavior when no direction is specified at all, i.e., a two-sided limit parallel to the real axis.

  

If dir is complex, a limit is computed that is valid in some open neighborhood of a in the complex plane, typically a disc centered at a.

  

If dir is fromtheorigin, a limit is computed that is valid along a ray originating at the origin in the complex plane, unless a is 0, in which case the limit is computed from the right. This corresponds to the default behavior of multiseries.

• 

The function limit invokes MultiSeries[multiseries] for its computation. In rare cases, it might be necessary to increase the value of the global variable Order in order to improve the ability of limit 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,limit:

limitsinxx,x=0

1

(1)

limitexpx,x=

(2)

limitexpx,x=

0

(3)

limit1x,x=0

undefined

(4)

fsinxxsinxx1cosx

fsinxxsinxx1cosx

(5)

limitf,x=0

ⅇ13

(6)

limitsinx,x=

undefined

(7)

See Also

limit

MultiSeries

Order

Testzero