I want to show that if I have $\lim_{n\to\infty}a_n = a$ and $\lim_{n\to\infty}b_n = b$ then $\lim_{n\to\infty}a_nb_n = ab$
I want to do it in a slightly different way than by book but I don't know if it is correct.
$(a_n)$ converges to $a$ means $$\forall \epsilon >0, \exists n_1 \in\mathbb{N}: |a_n - a| < \frac{\epsilon}{2|b|} \,\,\,\ \forall n\in\mathbb{N}, n>n_1$$ $(b_n)$ converges to $b$ means $$\forall \epsilon >0, \exists n_2 \in\mathbb{N}: |b_n - b| < \frac{\epsilon}{2|a|} \,\,\,\ \forall n\in\mathbb{N}, n>n_2$$ Hence take $n_0 := \max\{n_1,n_2\}$ and we have $$|a_nb_n - ab| = |a_nb_n -a_nb+a_nb-ab| = |a_n(b_n-b)+b(a_n-a)| \leq |a_n|\frac{\epsilon}{2|a|}+|b|\frac{\epsilon}{2|b|}=\frac{\epsilon}{2} +\frac{\epsilon}{2} = \epsilon$$
so it's proven.
Can I do that trick in the penultimate step, where I cancel out $|a_n|$ and $|a|$ ? I know that for large $n$ they will be the same, but I think this proof right now is not very rigorous!