I am trying to make a very clear explanation of why -4^2 is -16 and not 16.
You all know that in mathematics an expression must always be solved in the right order. You don't always go from left to right. Everyone knows that in expression:
1 + 2 * 3
2 * 3 is evaluated before the
1 + 2.
Similarly everyone knows that in expression:
2 * 5 ^ 2
5 ^ 2 is evaluated before
2 * 5.
This is called order of operations. I've referred to it as "operator precedence" many times in my posts before, which is a term more common to programming languages, but it means the same thing. Order of operations.
Now, the reason why people miscalculate the -4 ^ 2 is because they don't know that there's an operation "hidden" in the
-4. Yes, -4
is a number on its own (a real number), but the
-4 is also an operation. This operation is called negation. Everyone knows this as well. Everyone knows that a minus sign can be used to negate a number, or an expression, but what they don't know is that it's also got its place in the
order of operations. And furthermore they don't know that it's not on top of the list (and this is not necessarily their fault, it's surprising in how many schools they don't apparently teach this at all). Exponentiation has higher precedence in order of operations than the negation (which I've referred to as "unary -" in my earlier posts, which is also more of a programming terminology). That is why -4^2 is calculated as -(4^2). For the very same reason why 1 + 2 * 3 is calculated as 1 + (2 * 3).
Hopefully that clears it up a bit.