Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
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