Quote (LeB @ Oct 23 2013 02:00am)
|z| isnt the absolute value of z, its the module of z
if you have z = a+bi, then |z| = sqrt(a^2 + b^2)
See it this way : a complex number is like a set of coordinates, so 1 - i would be (1,-1) where -1 is the coefficient of the imaginary part
and your module is the distance from (0,0) to (1,-1)
when you have z= 1-i/2i you do
(1-i)/2i = (1-i)/2i * -2i/-2i (multiply by conjugate to remove imaginary part from the denumerator) = (1-i)(-2i)/(-2i*-2i) = (-2i -2 )/(-4) = 1/2 + i/2
and your module (or |z|) = sqrt(1/2)^2 + (1/2)^2) = sqrt(2/4) = sqrt(2)/2
or an easier way :
|z| = |1-i|/|-2i| = sqrt(1^2 + 1^2)/sqrt(2^2) = sqrt(2)/2
nvm you figured it out
thanks man really nice explained aswell