student(deprecated)/Limit - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : student(deprecated)/Limit

student

  

Limit

  

inert form of limit

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Limit(f, x = a)

Limit(f, x = a, direction)

Parameters

f

-

expression in x

x

-

variable name

a

-

the limiting value for x to approach

direction

-

(optional) one of right, left, real, or complex

Description

• 

Important: The student package has been deprecated. Use the superseding package Student instead.

• 

This function corresponds to the limit of f as x approaches a. It is an ``unevaluated'' form of Maple's limit function so only minor simplifications are performed.  It can be manipulated by changevar and expand.

• 

Use value to force evaluation by the limit function.

• 

The command with(student,Limit) allows the use of the abbreviated form of this command.

Examples

Important: The student package has been deprecated. Use the superseding package Student instead.

> 

with⁡student:

> 

Limit⁡x3+3⁢x2+x+1,x=4

limx→4⁡x3+3⁢x2+x+1

(1)
> 

Limit⁡1x,x=0,right

limx→0+⁡1x

(2)
> 

Limit⁡1x,x=0,real

Limit⁡1x,x=0,real

(3)
> 

expand⁡Limit⁡x3+3⁢x2+x+1,x=4

limx→4⁡x3+3⁢limx→4⁡x2+limx→4⁡x+1

(4)
> 

value⁡

117

(5)

See Also

limit

Student

student(deprecated)[changevar]

student(deprecated)[Int]

student(deprecated)[Sum]

value