[Math] Proof of continuity using sequential definition of continuity

alternative-proofcontinuityreal-analysis

I have seen proofs using the delta-epsilon definition of continuity, and they make perfect sense, but I have not found one proof using the sequential definition of continuity.

For example, when given functions, $f$ and $g$ that are continuous on [$a,b$], prove that the function $h=f+g$ is also continuous on [$a,b$]. I also have not seen a proof of $fg$ being continuous on [$a,b]$.

Does a proof exist that does not use the delta-epsilon definition? If so, is it a less concrete proof when using the sequential definition?

Best Answer

Yes.

Let $f$, $g \colon D \to \mathbb{R}$, where $D$ is some nonempty subset of $\mathbb{R}$. Let $a \in D$. Suppose both of $f$ and $g$ are continuous at $a$. We can show that $f+g$ is continuous at $a$ using the sequential criterion.

Let $(x_n)$ be a sequence in $D$ such that $\lim x_n = a$. Since $f$ and $g$ are continuous at $a$, $\lim f(x_n) = f(a)$ and $\lim g(x_n) = g(a)$. Then $$ \lim {}(f+g)(x_n) = \lim {}[f(x_n) + g(x_n)] = \lim f(x_n) + \lim g(x_n) = f(a) + g(a) = (f+g)(a). $$ Since $(x_n)$ was arbitrary, we have shown that for every sequence $(x_n)$ in $D$ that converges to $a$, the sequence $( (f+g)(x_n) )$ converges to $(f+g)(a)$. Therefore, $f+g$ is continuous at $a$.

A similar argument shows that $fg$ is continuous at $a$ (replace the sums above with products).

Related Question