0% found this document useful (0 votes)
34 views9 pages

Review of Complex Arithmetic

1. A complex number C has both a real component a and imaginary component b, and can be expressed as C = a + jb, where j2 = -1. 2. C can be represented using Cartesian coordinates (a, b) or polar coordinates (C, φc), where C is the magnitude and φc is the phase angle. 3. Trigonometric relationships allow conversion between Cartesian and polar representations. The polar form C = Cejφc allows easier calculation of multiplication, division, powers, and roots of complex numbers.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views9 pages

Review of Complex Arithmetic

1. A complex number C has both a real component a and imaginary component b, and can be expressed as C = a + jb, where j2 = -1. 2. C can be represented using Cartesian coordinates (a, b) or polar coordinates (C, φc), where C is the magnitude and φc is the phase angle. 3. Trigonometric relationships allow conversion between Cartesian and polar representations. The polar form C = Cejφc allows easier calculation of multiplication, division, powers, and roots of complex numbers.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

1/20/2005 Review of Complex Arithmetic.

doc 1/9

A Review of Complex
Arithmetic
A complex value C has both a real and imaginary component:

a = Re {C } and b = Im {C }

so that we can express this complex value as:

C = a + jb
where j 2 = −1 .

Just as a real value can be expressed as a point on the real line,


a complex value can be expressed as a point on the complex
plane:
Im {C } a
C = a + jb

Re {C }

Jim Stiles The Univ. of Kansas Dept. of EECS


1/20/2005 Review of Complex Arithmetic.doc 2/9

The values (a,b) are a Cartesian representation of a point on the


complex plane. Recall that we can alternatively denote a point
on a 2-dimensional plane using polar coordinates:

C  distance from the origin to the point

∠C  φc = rotation angle from the horizontal ( Re {C } ) axis

i.e., Im {C }
C = a + jb

C
b

φc
Re {C }
a

Using our knowledge of trigonometry, we can determine the


relationship between the Cartesian (a,b) and polar ( C ,φc )
representations.

From the Pythagorean theorem, we find that:

C = a 2 + b2

Jim Stiles The Univ. of Kansas Dept. of EECS


1/20/2005 Review of Complex Arithmetic.doc 3/9

Likewise, from the definition of sine (opposite over hypotenuse),


we find:

b b
sin φc = =
C a 2 + b2

or, using the definition of cosine (adjacent over hypotenuse):

a a
cos φc = =
C a 2 + b2

Combining these results, we can determine the tangent


(opposite over adjacent) of φc:

sinφc b
tanφc = =
cosφc a

Thus, we can write the polar coordinates in terms of the


Cartesian coordinates:

C = a 2 + b2

⎛ a ⎞ ⎛ b ⎞
( )
φc = tan −1 b a = cos −1 ⎜
⎝ a +b ⎠
2 2
⎟ = sin −1 ⎜
⎝ a +b ⎠
2 2

Jim Stiles The Univ. of Kansas Dept. of EECS


1/20/2005 Review of Complex Arithmetic.doc 4/9

Likewise, we can use trigonometry to write the Cartesian


coordinates in terms of the polar coordinates.

For example, we can use the definition of sine to determine b:

b = C sinφc

and the definition of cosine to determine a:

a = C cosφc
Summarizing:

a = C cosφc

b = C sinφc

Note that we can explicitly write the complex value C in terms


of its magnitude C and phase angle φc :

C = a + jb
= C cosφc + j C sinφc
= C ( cosφc + j sinφc )

Hey! we can use Euler’s equation to simplify this further!

Jim Stiles The Univ. of Kansas Dept. of EECS


1/20/2005 Review of Complex Arithmetic.doc 5/9

Recall that Euler’s equation states:

e j φ = cosφ + j sinφ

so complex value C is:

C = a + jb
= C ( cosφc + j sinφc )
= C e j φc

Now we have two ways of expressing a complex value C!

C = a + jb and/or C = C e j φc

Note that both representations are equally valid


mathematically—either one can be successfully used in complex
analysis and computation.

Typically, we find that the Cartesian representation is easiest


to use if we are doing arithmetic calculations (e.g., addition and
subtraction).

Jim Stiles The Univ. of Kansas Dept. of EECS


1/20/2005 Review of Complex Arithmetic.doc 6/9

For example, if:

C1 = a1 + j b1 and C 2 = a2 + j b2

then:
C1 + C 2 = ( a1 + a2 ) + j (b1 + b2 )

C1 − C 2 = ( a1 − a2 ) + j (b1 − b2 )

Conversely, for geometric calculations (multiplication and


division), it is easier to use the polar representation:

For example, if:

C1 = C1 e j φ1
and C2 = C2 e j φ
2

then:
C1 C 2 = C1 e j φ C2 e j φ
1 2

= C1 C 2 e j φ1e j φ2
j (φ1 +φ2 )
= C1 C2 e
and:

C1 C1 e
jφ 1

=
C2 C2 e j φ 2

C1 e j φ e − j φ
1 2

=
C2
C 1 j (φ −φ )
= e 1 2

C2

Jim Stiles The Univ. of Kansas Dept. of EECS


1/20/2005 Review of Complex Arithmetic.doc 7/9

Note in the above calculations we have used the general facts:

( y +z ) xy
=x( )
y −z
x x =x
y z
and
x z

Additionally, we note that powers and roots are most easily


accomplished using the polar form of C:

C n = ( C e j φc )
n

(e j φc )
n n
=C
n
= C e jnφc
and

1
n
C =(C e j φc
) n

1 1
(e j φc )
n
=C n

1
n j ⎛⎜ φc n ⎞⎟
=C e ⎝ ⎠

Therefore:

( )
2 2 j (2φc )
C = C e
2 j φc
=C e

and:
1 j ⎛⎜ φc 2 ⎞⎟
C =(C e j φc
) 2
= C e ⎝ ⎠

Jim Stiles The Univ. of Kansas Dept. of EECS


1/20/2005 Review of Complex Arithmetic.doc 8/9

Finally, we define the complex conjugate (C*) of a complex value


C:

C ∗  Complex Conjugate of C
= a − jb
= C e − j φc

A very important application of the complex conjugate is for


determining the magnitude of a complex value:

2
C =C C ∗

Typically, the proof of this relationship is given as:

C C ∗ = ( a + jb )( a − jb )
= a ( a − jb ) + jb ( a − jb )
= a 2 + jab − jba − j 2b 2
= a 2 + b2
2
=C

However, it is more easily shown as:

Jim Stiles The Univ. of Kansas Dept. of EECS


1/20/2005 Review of Complex Arithmetic.doc 9/9

C C ∗ = ( C e j φc )( C e − j φc )
2 j (φc −φc )
=C e
2
= C ej0
2
=C

Another important relationship involving complex conjugate is:

C + C ∗ = ( a + jb ) + ( a − jb )
= ( a + a ) + j (b − b )
= 2a

Thus, the sum of a complex value and its complex conjugate is a


purely real value.

Additionally, the difference of complex value and its complex


conjugate results in a purely imaginary value:

C − C ∗ = ( a + jb ) − ( a − jb )
= ( a − a ) + j (b + b )
= j 2b
Note from these results we can derive the relationships:

C +C ∗
a = Re {C } =
2

C −C ∗
b = Im {C } =
j2

Jim Stiles The Univ. of Kansas Dept. of EECS

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy