Of the following, why is a usually considered true, and for what reason other than "tradition" and "more convenient"?
a: ${x}^{y^z} = x^{(y^z)} \neq {(x^y)}^z$
b: ${x}^{y^z} = {(x^y)}^z \neq x^{(y^z)}$
Edit: I know a is correct, but what is the reason for this order of operations?
(expt a b c)
being(expt (expt a b) c)
, rather than the right associative(expt a (expt b c))
. Thanks a lot! I may well just fix this. – Kaz Oct 21 '13 at 20:10