I have a question on the notation for two products.
For Pi:
Is this statement true?
$$\prod_{k=1}^{l}a_k\prod_{m=1}^{n}b_m = \prod_{k=1}^{l}\prod_{m=1}^{n}a_kb_m \neq a_1a_2\dots a_lb_1b_2\dots b_n = \left(\prod_{k=1}^{l}a_k\right)\left(\prod_{m=1}^{n}b_m\right)$$
For Sigma and Pi:
When dealing with double (or nested/multiple) operators, do we by convention always deal with the "rightmost" (or the innermost) operator first (this applies to any operator in general)?
$$\sum_{r=1}^{w}\prod_{u=1}^{w}g\left(r, u\right) = \sum_{r=1}^{w}g\left(r,1\right)g\left(r,2\right)\dots g\left(r,w\right) = \prod_{u=1}^{w}g\left(1, u\right) + \prod_{u=1}^{w}g\left(2, u\right) + \dots + \prod_{u=1}^{w}g\left(w, u\right)$$
$$\prod_{u=1}^{w}\sum_{r=1}^{w}g\left(r, u\right) = \prod_{u=1}^{w}\left[g\left(1,u\right) + g\left(2,u\right) + \dots + g\left(w,u\right)\right]$$
Or can we evaluate the outermost ("leftmost") first? Does the equivalence of operating from innermost and operating from the outermost depend on the types of operators (pi, sigma, integral, etc.)? Is operating from the innermost operator always the way to go?