Wednesday, August 22, 2018

Finding factors of second order complex polynomial.



It concerns with finding roots of complex polynomial:
x2+(i1)x+(2+i). One way is to find roots by factoring, as:(xi)(x(12i))=(xi)(x1+2i)=(x2x+ix+i+2)=x2+x(i1)+(i+2)



But, this is a guess game for me, with no formal process to get in this case.




The logical process is to take roots of the quadratic equation, but I hope the quadratic formula does not work for complex coefficients.






Update -- Based on comments by @WillJagy, the square root is ±1±3i, hence the equation is having roots as :(i1)±6i82(1i)±(±1±3i)2 can have possible values:
(i) for 1+3i, get: x11=1+i,x12=2i
(ii) for 13i, get: x21=12i,x22=i
(iii) for 1+3i, get: x11=i,x21=12i
(iv) for 13i, get: x11=2i,x21=1+i



So, the 4 root pairs should be tried one by one:



(i) 1+3i=>(x1i)(x+2i)=x2+ixx2i+2, mismatch
(ii) 13i=>(xi)(x1+2i)=x2x+ix+i+2, matches original equation
(iii) same as for (ii),
(iv) same as for (i)




Why only two root pairs match, and the other don't?






Some answers on mse : 1






Update 2 -- To add to the answer by @Skip, where the fourth quadrant angle was transformed to the first one by taking out 1=i as common factor. For mixed sign discriminant, let D=6+8i, then angle cannot be taken\manipulated to be in the first quadrant; & can lie in the 2nd or 3rd quadrant.
In 2nd quad., sin of negative angle is positive, while in 3rd quad. both sin,cos are negative.



Answer



x2+(i1)x+2+i=0



So



x=(i1)±86i2=(i1)±i8+6i2



8+6i=10(cos(tan1(34)+2πk2)+isin(tan1(34)+2πk2))   k=0, 1



Take k=0 since if k=1, we'll just get the negative of when k=0 and the ± in front of the square root takes care of this for us




These are nonstandard trig arguments but



cos(12tan1(34))=310



isin(12tan1(34))=i110



Therefore



8+6i=3+i




So



x=1i±(1+3i)2



x=i



x=12i



Quadratic formula works







I'll keep the above because that is what appeared in the original problem, but here's how to evaluate 6+8i.



6+8i is in the second quadrant



θ=tan1(86)



But this angle describes a complex number in the fourth quadrant since tan1(x) has the range π2<x<π2, so add π to swing it to the second quadrant




θ=tan1(86)+π



Its magnitude is still 10, so for k=0, 1



6+8i=10(cos(tan1(43)+π+2πk2)+isin(tan1(43)+π+2πk2))



These arguments are not standard by any means, so I admittedly used a calculator and will again for evaluating this one too, which is why there is no work shown in evaluating them. The point of this post though is that the quadratic formula works for complex numbers.



I like Siong's way for solving the square root; the results will be the same and it's nicer to work with in this case. Sometimes this way is easier in case the polynomial isn't easily factorable, it depends on the problem




Taking k=0



cos(tan1(43)+π2)=15



isin(tan1(43)+π2)=i25



So



8+6i=2(1+2i)




Taking k=1 will result in 8+6i=2(12i) but the plus and minus takes care of this for us



±2(1+2i)=2(12i)



Say if the radicand were 68i, then this lies in the fourth quadrant, so we would not have added π when finding its angle.


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...