I think I'm missing something in this complex number problem

AI Thread Summary
The discussion centers on confusion regarding the calculation of powers involving negative numbers and the imaginary unit i. It highlights the distinction between -1 raised to an even power, which results in -1, and (-1) raised to the same power, which equals 1. The participants emphasize the importance of parentheses in mathematical expressions to clarify operations and ensure correct calculations. They also note that calculators may interpret expressions differently based on the absence of parentheses. Understanding these concepts is crucial for progressing in mathematics and programming.
JR Sauerland
Gold Member
Messages
44
Reaction score
0
As you can see, it says that -110 (-1 to the tenth is just -1), multiplied by i, is somehow i. Everywhere I have looked, -1 times i is negative i, but this problem disagrees. Am I missing something?
 

Attachments

  • 1.PNG
    1.PNG
    35.3 KB · Views: 423
Mathematics news on Phys.org
##(-1)^{10} = 1##
 
  • Like
Likes aikismos
micromass said:
##(-1)^{10} = 1##

But how? Every calculator or form I put it into says it is -1...? EDIT: If I put -110 in my graphic calculator, it brings back -1. If I do it as (-1)10, it says 1. Witchcraft! I am so confused .:nb)
1.PNG
2.PNG
 
There is a difference between ##-1^{10}##, which is apparently what the calculators are doing and ##(-1)^{10}##.
 
micromass said:
There is a difference between ##-1^{10}##, which is apparently what the calculators are doing and ##(-1)^{10}##.

What is the difference though?
 
For example:

(-1)^4 = (-1)\cdot (-1)\cdot (-1)\cdot (-1) = 1

while

-1^4 = - (1\cdot 1\cdot 1\cdot 1) = -1
 
  • Like
Likes JR Sauerland
micromass said:
For example:

(-1)^4 = (-1)\cdot (-1)\cdot (-1)\cdot (-1) = 1

while

-1^4 = - (1\cdot 1\cdot 1\cdot 1) = -1

That was perfect! Thank you so much!
 
Raising a power by convention has higher precedence over multiplication just as multiplication has a higher precedence over addition. Parentheses allow you to reorder the precedence of operations. These rules are especially good to know when you start programming.
 
  • Like
Likes JR Sauerland and aikismos
JR you leep asking these questions that show that there are really basic things that you have not grasped. Your calculator does not give you the "right" answer because you do not know what buttons to press. If you do not know without even thinking about it that aný even power of -1 is equal to 1 then you cannot progress your studies. As you seem familiar with Khan Academy, can I suggest that you go RIGHT BACK TO THE BEGINNING and take every class?
 
Last edited:
  • Like
Likes Qwertywerty and micromass
  • #10
Parentheses are your friends in programming. Use -(110) or (-1)10 to be sure what it is calculating exactly what you want it to.
 
  • Like
Likes jedishrfu
Back
Top