I was solving an excercise that involved the expression:
$$x^{x^x}$$
I decided to apply property of exponentials ($a^{b^c}=a^{bc}$) And I could arrive at the following:
$$x^{x x}=x^{x^2}=x^{2x}$$
But this is clearly wrong, I want to know why is it incorrectly, since it just seems as normal use of exponent laws
This is just an order of operations issue. When we write something like
$${x^{x^{x}}}$$
we (by convention) mean
$${x^{(x^{(x)})}}$$
Now, the exponent laws says
$${(a^{b})^{c}=a^{bc}}$$
Notice the difference in bracket placement? The order of evaluation is different. Now if instead you had
$${(x^{x})^{x}}$$
Then indeed, this equals ${x^{x\times x}=x^{(x^2)}}$. Notice I cannot apply the rule again because of the placement of brackets. So ${x^{(x^2)}\neq x^{2x}}$
Hope that helps :)