Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
MultiSeries[limit] - calculate limit
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
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 , 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
See Also
limit, MultiSeries, Order, Testzero
Download Help Document