I am using LATEX for just the second time, as part of my Real Analysis course.
I thought I found the correct instructions on how to set this up (it is a very simple proof after having just gotten the definition of continuity), but I get a bunch of "Missing $ inserted" errors and one "Bad math environment delimiter" error.
Code: Select all
\documentclass[12pt]{amsart}
\usepackage{amsmath}
\begin{document}
\title{M4 Written Assignment Exercise 1}
\author{John J. Scotch II}
\address{SUNY Empire State College\\
Center for Distance Learning\\
Saratoga Springs, New York}
\email{jjscotch2@gmail.com}
\date{March 27, 2022}
\maketitle
Use definition 4.2.1 to supply a proof for the following limit statement: $\lim_{x}^{1} 3x + 4$.
Let $\epsilon > 0$. We need to select a \delta such that $0 < |x - 1| < \delta$ implies that $|f(x) - 7| < \epsilon$.
We note that
\begin{equation}
\|f(x) - 7| = |(3x + 4) - 7| = |3x - 3| = 3|x - 1|.
\end{equation}
Thus, if we choose $\delta = \( \frac{\epsilon}{3} \)$, then $0 < |x - 1| < \delta$ implies that $|f(x) - 7| = 3|x - 1| < 3(\frac{\epsilon}{3} \) = \epsilon$. \qed
Thanks, J.J.