If I have an expression that gives 2^3^4, would I compute this as $(2^3)^4$ or as $2^{(3^4)}$? The two answers are wildly different.
My TI gives the former but Wolfram gives the latter and I don't know which to trust more on math. I also tried reading up in textbooks on the Laws of Exponents, but I could not find the case A^B^C in any of the textbooks I can access...
EDIT: This was found as an example in a CompSci textbook, thus the notation as it was.
Conventionally $a^{b^c}$ means $a^{(b^c)}$.
The other way of parsing it, $(a^b)^c$, yields a result equal to $a^{bc}$. In particular $(2^3)^4 = 2^{3\times 4} = 2^{12} = 4096$.