Why is negative one (-1) elevated to the power of an even integer returning always the same result in Julia?

115 Views Asked by At

I'm currently executing the following (very simple) code in Julia:

-1^2

But for some reason the result is always:

-1

Now, if I put in parenthesis, then the answer is correct. So I'm curious as to why this is happening. I'm running this on a Jupyter Notebook.

1

There are 1 best solutions below

0
On BEST ANSWER

This is due to order of operations. Exponentiation takes precedence over Subtraction, so you get -(1^n) which is always -1.