We know that the addition and multiplication operators are both commutative, and the exponentiation operator is not. My question is why.
As background there are plenty of mathematical schemes that can be used to define these operators. One of these is hyperoperation
where
$H_0(a,b) = b+1$ (successor op)
$H_1(a,b) = a+b$ (addition op)
$H_2(a,b) = ab $ (multiplication op)
$H_3(a,b) = a^b$ (exponentiation op)
$H_4(a,b) = a\uparrow \uparrow b$ (tetration op: $a^{(a^{(...a)})}$ nested $b$ times )
etc.
Here it is not obvious to me why $H_1(a,b)=H_1(b,a)$ and $H_2(a,b)=H_2(b,a)$ but not $H_3(a,b)=H_3(b,a)$
Can anyone explain why this symmetry breaks, in a reasonably intuitive fashion?
Thanks.
Here is a thought, which is not a full answer, but too long for a comment.
Addition $a + b$ means something like: Add $1$ to $a$, $b$ times $= 1\cdot b + a$. Commutativity here means that $1\cdot b + a = 1\cdot a + b$. We can see that it's only through the fortunate use of $1$ that this is commutative; $cb + a \not= ca+b$ in the general case. If we defined successorship to be an increment of two, addition would no longer be commutative!
With multiplication, $a \cdot b $ means add $a$ to itself, $b$ times $= \sum_{i=1}^b a$. It is only through the fact that addition is "hyper-commutative" (i.e. $\sum_{i=1}^b a = \sum_{i=1}^a b$) that multiplication is commutative.
Suppose I define an operation $+_2$ meaning "addition where successorship increases by two" as suggested above. $a+_2 b = 2a + b$. In this case, multiplication loses its commutativity, since $a +_2 a +_2 \dots +_2 a$ $b$ times is not the same as $b +_2 b +_2 \dots$ a times.
So to invert your question: why is it that addition and multiplication are commutative? It seems like it's because of the fortunate choice of successorship.
To stretch it further, we can view multiplication as a weird form of addition. In general, $ab = (a-1)b + b = b +_{a-1} b$. Plugging that in to, say, $b^2$, we would find $b^2=b +_{b-1} b$. So exponentiation is not commutative because its "successor" is not 1. This also explains why exponentiation is commutative for e.g. $2^2$, since $2-1=1$, and so we have a unit successor. It's more complex for $b^b$, but I think the principle holds.
Long story short: it's because "1" is special. Hopefully this is of some interest, even though it's not as "intuitive" as I might like.
EDIT: Perhaps the most interesting point in that long story is: if $H_0\not= +1$ then no operations are commutative.