Altanis

September 17th, 2026

Updated 22 Sep 2026Notes (PDF)

[0.0.5]Definition(Sequence of Reals)#

A sequence is a function f:Z+→Rf: \bZ_+ \to \bR. The nn-th term of ff is written as xn=f(n)x_n = f(n). The entire sequence may be denoted as a list (x1,x2,x3,… )(x_1, x_2, x_3, \dots), or (xn)n=1∞(x_n)_{n = 1}^\infty.

[0.0.6]Definition(Limit of a Sequence)#

Let (xn)n=1∞⊆R(x_n)_{n = 1}^\infty \subseteq \bR be a sequence of reals. We say that the limit of the sequence xnx_n is LL if, for every ε>0\epsilon > 0, there exists some N∈Z+N \in \bZ_+ such that ∣xn−L∣<ε|x_n - L| < \epsilon for every n≥Nn \ge N. We denote the limiting behavior in the following various forms.

lim⁡n→∞xn=Llim⁡(xn)=Lxn→L\lim_{n \to \infty} x_n = L \quad \lim(x_n) = L \quad x_n \to L
[0.0.7]Theorem(Sum and Product of Limits)#

Let (xn)n=1∞(x_n)_{n = 1}^\infty and (yn)n=1∞(y_n)_{n = 1}^\infty be sequences of reals convering to xx and yy respectively.

  1. lim⁡(xn+yn)=x+y\lim(x_n + y_n) = x + y.

  2. lim⁡(xnyn)=xy\lim(x_ny_n) = xy.

Proof.
  1. Fix ε>0\epsilon > 0. There is some N1,N2∈Z+N_1, N_2 \in \bZ_+ such that ∣xn−x∣<ε/2|x_n - x| < \epsilon/2 and ∣yn−y∣<ε/2|y_n - y| < \epsilon/2 for every n≥Nn \ge N, where N=max⁡{N1,N2}N = \max\{N_1, N_2\}. Then note

    ∣(xn+yn)−(x+y)∣≤∣xn−x∣+∣yn−y∣<ε/2+ε/2=ε|(x_n + y_n) - (x + y)| \le |x_n - x| + |y_n - y| < \epsilon/2 + \epsilon/2 = \epsilon

    for every n≥Nn \ge N as desired.

  2. Fix ε>0\epsilon > 0. Since xn→xx_n \to x, we have that there exists some A∈Z+A \in \bZ_+ such that ∣xn−x∣<1|x_n - x| < 1 for every n≥An \ge A. We are justified in choosing

    M=max⁡{∣x1∣,∣x2∣,…,∣xA−1∣,∣x∣+1},M = \max\{|x_1|, |x_2|, \dots, |x_{A - 1}|, |x| + 1\},

    and note ∣xn∣<M|x_n| < M for all n∈Z+n \in \bZ_+.

    Let N1∈Z+N_1 \in \bZ_+ be such that ∣xn−x∣<ε/2(∣y∣+1)|x_n - x| < \epsilon/2(|y| + 1) and N2∈Z+N_2 \in \bZ_+ be such that ∣yn−y∣<ε/2M|y_n - y| < \epsilon/2M. Choose N=max⁡{N1,N2}N = \max\{N_1, N_2\}, and note

    ∣xnyn−xy∣=∣xnyn−yxn+yxn−xy∣≤∣xn∣∣yn−y∣+∣y∣∣xn−x∣<∣xn∣ε2M+∣y∣ε2(∣y∣+1)<ε/2+ε/2=ε|x_ny_n - xy| = |x_ny_n - yx_n + yx_n - xy| \le |x_n| |y_n - y| + |y| |x_n - x| < |x_n| \frac{\epsilon}{2M} + |y| \frac{\epsilon}{2(|y| + 1)} < \epsilon/2 + \epsilon / 2 = \epsilon

    for all n≥Nn \ge N. Thus xnyn→xyx_ny_n \to xy as desired.