Complex Numbers#
Definition: Complex Numbers
A complex number \(z\) is an expression of the form
where \(a\) and \(b\) are real numbers.
Notation
We can also notate \(z\) as \(a + \mathrm{i}b\). If \(a = 0\), we can write just \(z = \mathrm{i}b\) or \(z = b\mathrm{i}\). If \(b = 0\), we can write just \(z = a\).
Definition: Imaginary Unit
The symbol \(\mathrm{i}\) is called the imaginary unit.
Definition: Real Part
We call \(a\) the real part of \(a + b\mathrm{i}\).
Notation
Definition: Imaginary Part
We call \(b\) the imaginary part of \(a + b \mathrm{i}\).
Notation
Notation: The Set of Complex Numbers
The set of all complex numbers is denoted by \(\mathbb{C}\).
Definition: Modulus
The modulus of a complex number \(z = a + b\mathrm{i}\) is the square root of the sum of the squares of its real part and its imaginary part:
Definition: Argument
The argument of a complex number \(z = x + y \mathrm{i} \ne 0\) is defined using the arctan function as
Forms#
Definition: Cartesian Form
Given a complex number \(z = a + \mathrm{i}b\), we call \(a + \mathrm{i}b\) the Cartesian form of \(z\).
The Cartesian form of a complex number is just the one resulting from its definition. However, there are other, equivalent ways to specify \(z\) which often make the solutions of some problems easier and more intuitive.
Theorem: Polar Form
Each complex number \(z \ne 0\) can be specified using its modulus \(r = |z|\) and the real trigonometric functions of its argument \(\varphi = \arg z\):
Proof
TODO
Definition: Polar Form
We call \(r(\cos \varphi + \mathrm{i} \sin \varphi)\) the polar form of \(z\).
Note: Infinitely Many Polar Forms
We can also construct other, still equivalent polar forms of \(z\) by adding an integer multiple of \(2\pi\) to \(\varphi\) because \(\cos\) and \(\sin\) are periodic.
There is also a third way to specify complex numbers using Euler's formula.
Theorem: Exponential Form
Each complex number \(z \ne 0\) can be specified using its modulus and the complex exponential of its argument:
Proof
Using Euler's formula we obtain
which is the canonical polar form of \(z\).
Definition: Exponential Form
We call \(|z| \mathrm{e}^{\mathrm{i} \arg(z)}\) the exponential form of \(z\).
Operations#
Definition: Complex Conjugation
The (complex) conjugate of a complex number \(z = a + \mathrm{i}b\) is the complex number
Definition: Addition
The sum of two complex numbers \(z_1 = a_1 + \mathrm{i}b_1\) and \(z_2 = a_2 + \mathrm{i} b_2\) is defined as the complex number
Notation: Subtraction
We write \(-z_2\) for \(-a_2 - \mathrm{i}b_2\) and write \(z_1 - z_2\) instead of \(z_1 + (-z_2)\).
Definition: Multiplication
The product of two complex numbers \(z_1 = a_1 + \mathrm{i}b_1\) and \(z_2 = a_2 + \mathrm{i} b_2\) is defined as the complex number
Theorem: Multiplication in Polar Form
If the polar forms of \(z_1\) and \(z_2\) are
then the polar form of \(z_1 \cdot z_2\) is
Proof
TODO
Theorem: Multiplication in Exponential Form
The exponential form of \(z_1 \cdot z_2\) is
Proof
TODO
Definition: Division
The division of a complex number \(z_1\) by a complex number \(z_2\) is the complex number
Theorem: Division in Polar Form
If the polar forms of \(z_1\) and \(z_2\) are
then the polar form of \(\frac{z_1}{z_2}\) is
Proof
TODO
Theorem: Division in Exponential Form
The exponential form of \(\frac{z_1}{z_2}\) is
Proof
TODO
Theorem: The Field of Complex Numbers
The complex numbers \(\mathbb{C}\) form a field \((\mathbb{C}, +, \cdot)\) with the addition, multiplication defined on them.
Proof
We need to prove the following:
- (1) \(z_1 + (z_2 + z_3) = (z_1 + z_2) + z_3\) for all \(z_1, z_2, z_3 \in \mathbb{C}\);
- (2) \(z_1 \cdot (z_2 \cdot z_3) = (z_1 \cdot z_2) \cdot z_3\) for all \(z_1, z_2, z_3 \in \mathbb{C}\);
- (3) \(z + w = w + z\) for all \(z, w \in \mathbb{C}\);
- (4) \(z \cdot w = w \cdot z\) for all \(z, w \in \mathbb{C}\);
- (5) \(z + 0 = z\) for all \(z \in \mathbb{C}\);
- (6) \(z \cdot 1 = z\) for all \(z \in \mathbb{C}\);
- (7) \(z - z = 0\) for all \(z \in \mathbb{C}\);
- (8) \(z \cdot \frac{1}{z} = 1\) for all \(z \in \mathbb{C}\);
- (9) \(z \cdot (u + v) = z \cdot u + z \cdot v\) for all \(z, u, v \in \mathbb{C}\).
Proof of (1): The following proof was generated by AI and has not been human-verified. As such, it may contain mistakes.
We want to show \(z_1 + (z_2 + z_3) = (z_1 + z_2) + z_3\).
Proof of (2): The following proof was generated by AI and has not been human-verified. As such, it may contain mistakes.
We want to show \(z_1 \cdot (z_2 \cdot z_3) = (z_1 \cdot z_2) \cdot z_3\).
First, we compute the left-hand side:
$$
\begin{aligned}
z_2 \cdot z_3 &= (a_2a_3 - b_2b_3) + (a_2b_3 + b_2a_3)i \
z_1 \cdot (z_2 \cdot z_3) &= (a_1 + b_1i) \cdot ((a_2a_3 - b_2b_3) + (a_2b_3 + b_2a_3)i) \
&= (a_1(a_2a_3 - b_2b_3) - b_1(a_2b_3 + b_2a_3)) + (a_1(a_2b_3 + b_2a_3) + b_1(a_2a_3 - b_2b_3))i \
&= (a_1a_2a_3 - a_1b_2b_3 - b_1a_2b_3 - b_1b_2a_3) + (a_1a_2b_3 + a_1b_2a_3 + b_1a_2a_3 - b_1b_2b_3)i
\end{aligned}
$$
Proof of (3): The following proof was generated by AI and has not been human-verified. As such, it may contain mistakes.
Proof of (4): The following proof was generated by AI and has not been human-verified. As such, it may contain mistakes.
Proof of (5): The following proof was generated by AI and has not been human-verified. As such, it may contain mistakes.
Proof of (6): The following proof was generated by AI and has not been human-verified. As such, it may contain mistakes.
Proof of (7): The following proof was generated by AI and has not been human-verified. As such, it may contain mistakes.
Proof of (8): The following proof was generated by AI and has not been human-verified. As such, it may contain mistakes.
Proof of (9): The following proof was generated by AI and has not been human-verified. As such, it may contain mistakes.
Theorem: Distributivity of Complex Conjugation
Complex conjugation is distributive over addition, multiplication and division:
Proof
TODO
Theorem: Conjugate Multiplication and Modulus
Multiplying a complex number by its conjugate results in the square of its modulus:
Proof
TODO
Theorem: Triangle Inequality
The modulus has the following property for all \(z_1, z_2 \in \mathbb{C}\):
Proof
TODO
Theorem: Modulus Product
The modulus has the following property for all \(z, w \in \mathbb{C}\):
Proof
TODO
The Complex Plane#
Complex numbers can be plotted on a plane where the horizontal axis contains the real numbers and the vertical axis contains the imaginary numbers.