complex_numbers_handout
complex_numbers_handout
a complex number z ∈ C is a point in the complex plane, an extension of the real numbers.
Im[z]
Re[z]
Re[z]
the complex conjugate of a complex number: z ∗ = (a + bi )∗ =
addition/subtraction of complex numbers: collect real, imaginary parts. ie., ”how many
1’s and how many i ’s constitute the complex number?
(2 + 3i ) + (8 − 6i )
Re[z]
2
polar form of a complex number z = r e iθ (in canonical polar form, θ ∈ [−π, π]).
Im[z]
Re[z]
we can write any complex number z ∈ C in either polar or rectangular form. to convert
between these two forms:
Im[z]
1
Re[z]
1
e.g.
warning: to convert z = a+ib into polar form in Julia, call atan(b, a) instead of atan(b/a)
to return the angle in the correct quadrant. ie., be careful to check the quadrant of where
the complex numbers lie when you take the inverse tangent of b/a to arrive at the angle of
the number. alternatively, use Julia’s angle(z) function.
5
tan(θ)
-5
π -π/2 0 π/2 π
θ
3
the complex conjugate of a complex number in polar form z ∗ = (r e iθ )∗ =
Im[z]
Re[z]
proof:
proof:
e i(ωt+θ) =
4
eg.: simplify cos(ωt) + cos(ωt + 2π/3) + cos(ωt − 2π/3)
?
eg.: A cos(ωt + θ) + B cos(ωt + φ) = C cos(ωt + ψ), relate C and ψ to A, B, θ, and φ.