A complex number is any number that is an element of the complex set, C. They can be represented in various forms and are useful in integrating with complex numbers, getting solutions of polynomials and much more.
x is the real component of z, i.e. the portion of z that is an element of R.
y is the imaginary part of z as it is multiplied by i.
Re(z) and Im(z) are functions used to obtain the real and imaginary parts of z respectively. For example, Re(9+3i)=9 and Im(7−5i)=−5
Operations on Re() and Im()
Just like any other operator, Re() and Im() are defined with certain rules. The main thing to take note is that real numbers do not affect them. This includes addition, subtraction, multiplication, division, etc. as long as it is done within the R set.
This also extends to derivatives and antiderivatives. I.e. ∫Re(f(x))dx=Re(∫f(x)dx)
and dxd(Im(f(x)))=Im(dxd(f(x))) if f(x)∈R
Using the Cartesian definition, an imaginary number can easily be graphed with the x-axis being Re(z) and the y-axis being Im(z). These types of graphs are known as Argand diagrams.
\bar{z} = x - yi$$is the complex conjugate of $z$.
### Polar Form
If you look back to the unit circle from trigonometry, each coordinate point on the circle $(x,y)$ can be represented as $(\cos(\theta),\sin (\theta))$. Multiply this by a radius value $r$ and we can plot any point on the real set.
Using a similar approach, complex numbers can be represented in **Polar form**:
z = r \ \textnormal{cis}(\theta) = r(\cos(\theta) + i \sin (\theta))
* $r$ : The *magnitude* of the complex number, $r = |z| = \sqrt{ x^2 + y^2}$
* $\theta$ : The angle of the complex number, $\theta = \arctan\left( \frac{y}{x} \right)$
Since there are multiple values of $\theta$ ( $cis(\theta) = cis(\theta + 2\pi) = cis(\theta + 4\pi) = \dots$) , it is restricted to the domain $(-\pi,\pi]$. This is the *principle argument* of theta.
![500](Pasted%20image%2020240408095114.png#BC)
##### Complex Exponential
The complex exponential is based on Euler's formula connecting trigonometric functions with the complex set.
e^{i\theta} = \cos(\theta) + i \sin(\theta) = re^{i\theta}
where $\theta \in \mathbb{R}$
It can be used to represent complex numbers in polar form using an exponential.
* $e^{0i} = 1$
* $e^{i\theta}\times e^{i\phi} = e^{i(\theta+\phi)}$
* $e^{i\theta} / e^{i\phi} = e^{i(\theta-\phi)}$
---
- [[Connecting Trigonometric Functions With Hyperbolic Functions Using Complex Numbers.md|Connecting Trigonometric Functions With Hyperbolic Functions Using Complex Numbers]]
- [[De Moivre's Theorem.md|De Moivre's Theorem]]
- [[Differentiating & Integrating Trigonometric Functions Using Complex Numbers.md|Differentiating & Integrating Trigonometric Functions Using Complex Numbers]]
---