> ## Documentation Index
> Fetch the complete documentation index at: https://docs.abscissa.eu/llms.txt
> Use this file to discover all available pages before exploring further.

# Limits

> Learn how to type limits.

## Usage

Limits in Mathsys have the following syntax:

```ebnf theme={"dark"}
lim {var name} -> {expression}{sign?} of ({expression})
```

like this one

```ms3 theme={"dark"}
e == lim n->inf of (1 + 1 / n)^n^
```

## Signed limits

Signed limits have their expression followed by a sign (either `+` or `-`):

```ms3 theme={"dark"}
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
```
