I came across this proof here https://en.wikibooks.org/wiki/Calculus/Proofs_of_Some_Basic_Limit_Rules (please see the proof about the Product Rule).
Recall that the definition of a limit is
$$\lim_{x \to a} f(x) =L \iff \forall \epsilon > 0, \exists \delta > 0 : 0 < |x-a| < \delta \implies |f(x) - L| < \epsilon$$
In the product proof they assume/define ${\displaystyle \lim _{x\to c}f(x)=L}$ and ${\displaystyle \lim _{x\to c}g(x)=M}$
With all this in mind, the relevant part I am asking about in the product proof is when they are stating:
Let $\varepsilon$ be any positive number. The assumptions imply the existence of the positive numbers $\delta_{1},\delta_{2},\delta_{3}$ such that
${\displaystyle (1)\qquad {\Big |}f(x)-L{\Big |}<{\frac {\varepsilon }{2(1+|M|)}}}$ when ${\displaystyle 0<|x-c|<\delta _{1}} $
${\displaystyle (2)\qquad {\Big |}g(x)-M{\Big |}<{\frac {\varepsilon }{2(1+|L|)}}}$ when ${\displaystyle 0<|x-c|<\delta _{2}}$
${\displaystyle (3)\qquad {\Big |}g(x)-M{\Big |}<1}$ when ${\displaystyle 0<|x-c|<\delta _{3}}$
Which of these is it saying, equivalently?
$\forall\epsilon>0,\exists\delta_1>0:0<|x-c|<\delta_1\implies|f(x)-L|<\dfrac{\epsilon}{2(1+|M|)}$
$\forall\epsilon>0,\exists\delta_2>0:0<|x-c|<\delta_2\implies|g(x)-M|<\dfrac{\epsilon}{2(1+|L|)}$
$\forall\epsilon>0,\exists\delta_3>0:0<|x-c|<\delta_3\implies|g(x)-M|<1$
Or is it not making these claims for all epsilon and is instead saying
- $\exists\delta_1>0:0<|x-c|<\delta_1\implies|f(x)-L|<\dfrac{\epsilon}{2(1+|M|)}$
- $\exists\delta_2>0:0<|x-c|<\delta_2\implies|g(x)-M|<\dfrac{\epsilon}{2(1+|L|)}$
- $\exists\delta_3>0:0<|x-c|<\delta_3\implies|g(x)-M|<1$
Or, is it nonsensical to state the numbered deltas here, and it is better to say
- $\exists\delta>0:0<|x-c|<\delta_1\implies|f(x)-L|<\dfrac{\epsilon}{2(1+|M|)}$
- $\exists\delta>0:0<|x-c|<\delta_2\implies|g(x)-M|<\dfrac{\epsilon}{2(1+|L|)}$
- $\exists\delta>0:0<|x-c|<\delta_3\implies|g(x)-M|<1$
Or is it without any notation at all:
- $\exists\delta>0:0<|x-c|<\delta\implies|f(x)-L|<\dfrac{\epsilon}{2(1+|M|)}$
- $\exists\delta>0:0<|x-c|<\delta\implies|g(x)-M|<\dfrac{\epsilon}{2(1+|L|)}$
- $\exists\delta>0:0<|x-c|<\delta\implies|g(x)-M|<1$
Formula $(1)$ is a direct application of the definition of a limit: $$\lim_{x \to a} f(x) =L \iff \forall \epsilon > 0, \exists \delta > 0 : 0 < \lvert x-a\rvert < \delta \implies \lvert f(x) - L\rvert < \epsilon.\tag{14.1}$$
Note that in this definition, $\epsilon$ and $\delta$ are both governed by quantifiers. That means the symbols $\epsilon$ and $\delta$ in the definition have no necessary relationship to any symbols that appear anywhere outside the definition. You can replace one or both of these symbols inside the definition, for example, $$\lim_{x \to a} f(x) =L \iff \forall \eta > 0, \exists \delta > 0 : 0 < \lvert x-a\rvert < \delta \implies \lvert f(x) - L\rvert < \eta \tag{14.2}$$ (using $\eta$ instead of $\epsilon$ in this example), and the definition means exactly the same thing as it did before.
In Formula $(1),$ $\epsilon$ is a quantity that will be used further on in the proof. It does not have to be the same $\epsilon$ that was used in your original definition of $\lim_{x \to a} f(x) = L$ (Formula $(14.1)$ above). But $\frac{\epsilon}{2(1+\lvert M\rvert)} > 0,$ so Formula $(14.2)$ says that we can set $$\eta = \frac{\epsilon}{2(1+\lvert M\rvert)},$$ and then (because the rest of the formula is true for any $\eta > 0$), there is some positive number $\delta$ such that $$\lvert f(x)-L\rvert < \eta = \frac{\epsilon}{2(1+\lvert M\rvert)} \text{ whenever $0 < \lvert x-a\rvert < \delta.$}$$ Now that we've established that such a number $\delta$ exists, call it $\delta_1.$ Then we have justified writing Formula $(1)$ exactly as shown in the proof.
In other words, Formula $(1)$ says exactly what it says. The justification for saying what it says is the definition of a limit, where we are careful not to let certain symbols in the definition (which have meaning only inside the definition) "leak out" and confuse us about the meanings of other statements that are not actually part of the definition (even if we want to invoke the definition to justify them).
If you're a programmer, you can think of $\epsilon$ and $\delta$ as local variables inside a context that starts and ends with the start and end of the definition of a limit. The $\epsilon$ in Formula $(1)$ is a variable defined in a different context. It's the same kind of naming logic that allows you to write a function call like
y = foo(x/17)when the definition of the function isint foo(int x) { return 2*x; }.