Oversimplified: Signals and Systems (2) – Prereq: Complex Numbers

Complex number manipulations are prevalent through the entire ‘Signals and Systems’ course and everywhere that uses the concepts. You won’t get anywhere without it. You need to get so comfortable with it that Chapter 1 of Churchill’s Complex Variables and Applications is child’s play.

Jargon in complex numbers goes under many different names. Remember as many of them as you can since different books will use different terminologies. Some might actually help you to grasp the concepts better. I’ll use them interchangeably without hesitation.

  • [Magnitude] radius, length, modulus
  • [Phase] angle, direction, argument
  • [Cartesian Coordinates] rectangular coordinates

Before we get to properties, you’ll need to have the following intuition in mind so you can easily prove the properties in your head:

  • Conjugation flips your the complex number upside down along the real plane.
    It reverse the angles and flips the sign of the imaginary part.
  • Unit circle e^{jx} has a radius of 1 everywhere (\forall x) . Mathematically \lvert e^{jx} \rvert = 1 so you don’t have to worry about scaling when you work with the phase.
  • -1 is a phase change of \pi, aka e^{j\pi}. j is a 90^\circ or \frac{\pi}{2} phase shifter.
  • Multiplying with non-zero phase rotates the complex number (interpreted as a vector) anti-clockwise (i.e. adding the angles).

The main use of different coordinate systems is to decouple the parameters so you can vary one parameter without changing the rest, which makes visualization or manipulations much easier. Cartesian coordinates decouples real and imaginary parts while polar coordinates decouples length and direction.

In general, polar coordinates are often most helpful for visualizing the ideas (and multiplicative operations) while rectangular coordinates are better for additive manipulations.

Remember ALL of the following properties by heart:

Conjugation distributes both additively \{ +, - \} and multiplicatively \{ \times, \div \}:

    \begin{align*} \overline{z_1 + z_2} & = \overline{z_1} + \overline{z_2}  & \, & \textnormal{Conjugation distributes additively}\\ \overline{z_1 z_2} & = \bar{z_1} \bar{z_2}  & \, & \textnormal{Conjugation distributes multiplicatively}\\ \end{align*}

Magnitude distributes ONLY multiplicatively \{ \times, \div \}

    \begin{align*} \lvert z_1 z_2 \rvert & = \lvert z_1 \rvert \lvert  z_2 \rvert  & \, & \textnormal{Magnitude distributes multiplicatively}\\ \end{align*}

Unless you can guarantee the all complex numbers point in the same direction (same phase, or collinear), adding them might have a cancelling effect. One trivial example: |3+4| = |3| + |4| = 7, but |3 + (-1)| \neq |3| + |-1|. Clearly magnitude operator does not distribute additively. The relationship is in fact expressed in terms of triangle inequality:

    \begin{align*} \lvert z_1 + z_2 \rvert & \leq \lvert z_1 \rvert + \lvert  z_2 \rvert  & \, & \textnormal{Addition might cancel to reduce mangitude}\\ \end{align*}

Squared magnitude can be expressed as a product of the complex number itself multiplied by its conjugate:

    \begin{align*} \lvert z \rvert^2 & = z\overline{z}  & \, & \textnormal{Squared magnitude as the product of conjugate pairs}\\ \end{align*}

This can be interpreted in both rectangular (Cartesian) coordinates and polar coordinates:

    \begin{align*} z\overline{z} & = (a+jb)(a-jb)  = (a^2 - {(jb)}^2) = a^2 + b^2 = \lvert z \rvert^2 & \, & \textnormal{Cartesian interpretation}\\ z\overline{z} & = \lvert z \rvert e^{j\angle x} \lvert z \rvert e^{-j\angle x} = \lvert z \rvert^2 & \, & \textnormal{Polar interpretation}\\ \end{align*}

Most of the slick tricks in the class will require this:

    \begin{align*} \mathrm{Re}\{ z \} & = \frac{z+\overline{z}}{2} \\ \mathrm{Im}\{ z \} & = \frac{z-\overline{z}}{2j} \\ \end{align*}

The most common (and handy) use of this decomposition:

    \begin{align*} \mathrm{Re}\{ e^{jx} \} & = \cos x = \frac{e^{jx}+e^{-jx}}{2} \\ \mathrm{Im}\{ e^{jx} \} & = \sin x = \frac{e^{jx}-e^{-jx}}{2j} \\ \end{align*}

With this, deriving product to sum formula in high school trigonometry becomes a trivial algebra problem of multiplying exponents!

Loading

Leave a Reply

Your email address will not be published. Required fields are marked *