limitps.spad line 1 [edit on github]
PowerSeriesLimitPackage implements limits of expressions in one or more variables as one of the variables approaches a limiting value. Included are two-sided limits, left- and right- hand limits, and limits at plus or minus infinity.
complexLimit(f(x), x = a)
computes the complex limit lim(x -> a, f(x))
.
limit(f(x),x=a,"left")
computes the left hand real limit lim(x -> a-, f(x))
; limit(f(x),x=a,"right")
computes the right hand real limit lim(x -> a+, f(x))
.
limit(f(x), x = a)
computes the real limit lim(x -> a, f(x))
.