I am going through the proof of the product of convergent sequences. Given that $a_n \to a$ and $b_n \to b$, we need to prove that $a_nb_n \to ab$
We have $\forall \epsilon_1 >0, \exists N_1 \in \mathbb{N}$ such that $$|a_n-a|<\epsilon_1$$ Also We have $\forall \epsilon_2 >0, \exists N_2 \in \mathbb{N}$ such that $$|b_n-b|<\epsilon_2$$ Now since $\left\{b_n\right\}$ is bounded, $\exists M>0$ such that $|b_n|\leq M,\:\forall n \in \mathbb{N}$
Now by $\Delta$ inequality we have $$|a_nb_n-ab|\leq |b_n||a_n-a|+|a||b_n-b|$$
Now for a given $\epsilon >0$, the author chooses
$\epsilon_1 <\min \left(1, \frac{\varepsilon}{2 M}\right)$ and $\epsilon_2<\min \left(1, \frac{\varepsilon}{2 (|a|+1)}\right)$
Is there any reason to choose epsilons using min function? I guess it is to make $\epsilon_1,\epsilon_2$ as small as possible.
You want to look at the worst case scenario in your sum. We know $|b_n|<M$ and $|a_n-a|<\frac \epsilon {2M}$. Multiplying those gets you to a product that is less than $\frac \epsilon 2$ Similarly, multiplying the second product gets you to less than $\frac \epsilon 2$. Adding them gets you to your desired $\epsilon$. Normally the minimum of 1 is put on to avoid pathological cases where a too high initial choice messes things up and you are always allowed to use a smaller value than needed. Not sure if there's actually a need for it here