Tuesday, January 19, 2016

Compute the square root of a complex number


This is a follow up to a previous question. I solved the equation z46z2+25=0 and I found four answer to be z=±3±4i.


However someone in the comment said that the answer is going to be 2+i, 2i, 2+i, 2i. I cannot understand how we can find these roots from the answer that I found. How are we supposed to compute the square root of a complex number?


Answer



Hint:


Let x+yi=a+bi. Then (x+yi)2=a+bi. Then solve for x and y and you will generally have two sets of values for the square root a+bi



Example:


Say you want to compute 3+4i. Then assume the square root is a+bi. That is a+bi=3+4i(a+bi)2=(a2b2)+2abi=3+4i. Now solve the equations (a2b2)=3 and 2ab=4 to find a and b.


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...