The equation $A \Sigma = \Sigma A$ doesn't quite make sense here, because you're using $A$ to mean two different things: on the left, you mean an operator that takes one value $x$ and returns $A(x)$, and on the right you mean an operator that takes many values $(x_i)$ and returns the sequence $(A(x_i))$.
For addition specifically, we would use the term "additive", or possibly in certain contexts "linear". However, there is a generalization of the notion of commutativity that applies to this situation.
Suppose you have an $m \times n$ array of numbers $x_{ij}$, an $m$-ary operation $f$, and an $n$-ary operation $g$.
Then you could apply $f$ on the columns to get an $n$-long sequence which you can plug into $g$
$$ g(f(x_{11}, x_{21}, \ldots, x_{m1}), \cdots, f(x_{1n}, x_{2n}, \ldots, x_{mn}) ) $$
or, you could apply $g$ to the rows to get an $m$-long sequence which you can plug into $f$:
$$ f(g(x_{11}, x_{12}, \ldots, x_{1n}), \cdots, g(x_{m1}, x_{m2}, \ldots, x_{mn}) ) $$
If you get the same value either way, then $f$ and $g$ are said to commute.
As an example, incidentally, the distributive law is precisely the statement that, for each $c$, the binary addition operator commutes with the unary operation "multiply by $c$". Given a 1x2 array of numbers
$$ (a,b) $$
If we apply $+$ across rows, and "multiply (on the right) by $c$" down columns, the two ways of calculating are
$$ (a+b) \cdot c = (a \cdot c) + (b \cdot c) $$
Aand∑do not commute in my example? – Val Sep 06 '13 at 03:46Thereby, unless you define A and B's domain and range, you cannot talk about commutativity. That is why, I asked you, please write the domain and range of the two operators that you speak. Then we can think about commutativity.
– TenaliRaman Sep 06 '13 at 12:37