:PROPERTIES: :ID: 122fd244-ffeb-47d0-89ce-bf9bc6f01b70 :END: #+title: limit #+author: Preston Pan #+html_head: #+html_head: #+html_head: #+options: broken-links:t * Introduction A limit in mathematics is a tool used to describe the intuitive process of a value or a set of values tending towards another. First, we will define limits as they pertain to sequences, and then we will define them on [[id:b1f9aa55-5f1e-4865-8118-43e5e5dc7752][functions]]. For a sequence $\{s_{n}\}$: \begin{align*} \lim s_{n} = s \iff \forall \epsilon > 0, \exists N , n > N \implies | s_{n} - s | < \epsilon \end{align*} What this means is that at some point in the sequence, for some choice of epsilon, no matter how small it is, there has to be an index where every term after that index is closer to $s$ than epsilon. If some single number $s$ and sequence $\{s_{n}\}$ fulfills this criteria, then it is said that the limit of the sequence is $s$. Generally speaking, we use the set $\mathbb{R} \cup \{ -\infty, +\infty \}$, where there is a natural ordering: \begin{align*} \forall a \in \mathbb{R}, - \infty < a < +\infty \end{align*} defined. Note that we can define equivalence relations on these symbols, but algebra reamins undefined. ** Unbounded Sequences Unbounded sequences can still limit to $+\infty$ or $-\infty$, although the limit does not exist for many unbounded sequences. If a sequence is one of: 1. unbounded above 2. unbounded below but not both, it is possible that such sequences limit to $\infty$. ** Limits on Monotone Sequences An increasing sequence is a sequence $\{s_{n}\}$ defined such that: \begin{align*} \forall n \in \mathbb{N}, \forall m \in \mathbb{N}, n \ge m \implies s_{n} \ge s_{m}. \end{align*} #+begin_theorem The limit of monotone sequences always exists. #+end_theorem #+begin_proof We know: \begin{align*} \lim s_{n} = s \iff \forall \epsilon > 0, \exists N, n > N \implies | s_{n} - s | < \epsilon \\ \end{align*} and our sequence $\{s_{n}\}$ is monotone. If $\{s_{n}\}$ is increasing, we have: \begin{align*} s_{n + 1} \ge s_{n} \end{align*} for all n. #+end_proof