0

What is the difference between: $ -3^2 $ and $ (-3)^2 $ ? I know $-3^2 = -9$ and $(-3)^2 = 9$ but I don't know why.

Anon
  • 277
  • 1
  • 5
  • 15

2 Answers2

2

It's a matter of the order of operations.

If you write $-3^{2}$, you're saying "the square of 3, now make it negative" = "9, now make it negative" = "-9".

If you write $(-3)^{2}$, you're saying "make 3 negative, now square it" = "-3, now square it" = "(-3)(-3)" = "9".

0

So by convention, the power operation has higher priority than multiply operation unless you have "$()$" to indicate priority.

$$-3^2=-1\times 3^2=-1\times 3\times 3$$

While

$$(-3)^2=(-3)\times (-3)=(-1\times 3)\times (-1\times 3) = -1\times -1 \times 3\times 3$$

Jay Zha
  • 7,792