Usage
Limits in Mathsys have the following syntax:Signed limits
Signed limits have their expression followed by a sign (either+ or -):
Learn how to type limits.
lim {var name} -> {expression}{sign?} of ({expression})
e == lim n->inf of (1 + 1 / n)^n^
+ or -):
lim x->0+ of (1 / x)
# results in inf
lim x->0- of (1 / x)
# results in -inf
lim x->0 of (1 / x)
# results in undefined
Was this page helpful?