So what's the difference between $(x^a)^b$ and $x^{a^b}$?

121 Views Asked by At

So what's the difference between $(x^a)^b$ and $x^{a^b}$?

Particularly, why does Wolfram Alpha treat them differently?

http://www.wolframalpha.com/input/?i=(x%5E3)%5E2

http://www.wolframalpha.com/input/?i=x%5E3%5E2

3

There are 3 best solutions below

0
On BEST ANSWER

$$\left(x^a\right)^b=x^{ab}\neq x^{a^b}$$

So the actual difference is between $\;ab\;$ and $\;a^b\;$ ....quite a difference, isn't it?

0
On

$x^{a^b}$ means: calculate $c= a^b$ and then $x^c$

$(x^a)^b$ means: calculate $c=x^a$ and then $c^b$

0
On

$(x^a)^b$ = $x^{(a*b)}$

Whereas $x^{(a^b)}$ is x^a^b

For example,

$(x^2)^5$ = $x^{(2*5)}$ = $x^{10}$

$x^{2^5}$ = $x^{(2^5)}$ = $x^{32}$