2

I was doing numericals on synchronous generators and came across this step in one of the examples. I have no idea what kind of math is used here. Can someone help?

$(1.5 + 2.0j)\Omega = 2.5 \angle 53.13^\circ \Omega$

$(0.3+1.22j)\Omega = 1.256 \angle 76.18^\circ\Omega$

Jemmy
  • 1,411
  • 7
    Your numbers are $a+i b$ and the first number in the rhs is $\sqrt{a^2+b^2}$. Now, guess why and what is the other number ! Happy New Year !! – Claude Leibovici Dec 31 '14 at 14:19
  • 1
    It looks like complex numbers, only with $j$ instead of $i$. Then on the right side the state the absolute value and the argument of the numbers. – Kaladin Dec 31 '14 at 14:21
  • 1
    Polar coordinates on the right. – mvw Dec 31 '14 at 14:38
  • 2
    @Kaladin work with electricity/circuits/etc will use $j$ for the imaginary number because $i$ is used to represent current. – Brian J Dec 31 '14 at 18:06
  • 1
    @BrianJ Or because engineers have bad handwriting! – rlms Dec 31 '14 at 20:05

1 Answers1

8

These are two repesentations of complex numbers (in this case, used to define impedances- see Wikipedia for more info).

Also, note that in electrical engineering and related fields, the imaginary unit is represented as $j$ because the common representation of current is $i$.

Assuming you have a complex number $z$ represented in the cartesian form $a+jb$, you can transform it into other representations, such as polar representation: $$z=a+jb=R\cdot\mathrm{e}^{j\theta}$$ where $$R=|z|=\sqrt{a^2+b^2}\qquad \theta=\arg(z)=\arctan\biggl(\frac{b}{a}\biggr)$$

The representation you show (I do not know the proper name for this representation) is another polar representation, written differently: $$z=a+jb=R\cdot\mathrm{e}^{j\theta}=R\angle\theta$$ where, again, $$R=|z|=\sqrt{a^2+b^2}\qquad \theta=\arg(z)=\arctan\biggl(\frac{b}{a}\biggr)$$

cjferes
  • 2,216
  • 1
    $\arg z=\arctan(b/a)$ is not really valid for all cases. – egreg Dec 31 '14 at 14:39
  • Got it. Thanks :) and Happy New Year to all – Ishaan Sejwal Dec 31 '14 at 14:47
  • @egreg That's right, but as an electrical engineer and former TA of several courses of that carrer, I know that that's generally true in these cases. Also, I prefered to be clear in the scope of the OP's question. – cjferes Dec 31 '14 at 14:53