What is wrong with writing:
$\displaystyle \Sigma_{n}\ a_n .$ $\Sigma_{n}\ b_n$ ?
I understand that it does not matter what dummy variable you sum over, but I don't understand why this is seen as ambiguous
What is wrong with writing:
$\displaystyle \Sigma_{n}\ a_n .$ $\Sigma_{n}\ b_n$ ?
I understand that it does not matter what dummy variable you sum over, but I don't understand why this is seen as ambiguous
It is bad style. The scope of the variable $n$ occurs within the summations; it is a "local variable" to the looping processes of the sum. Wny not do this? It confuses others. It will also mislead you into doing dumb stuff. Take note of this. The equality $$\sum_n a_n \cdot \sum_n b_n = \sum_{m, n} a_m b_n$$ properly carries out the distrubutive law. Mixing the scopes of the two $n$ can result in disaster.