Understanding Complex Numbers and Field Axioms
Complex numbers extend the 1-dimensional real number line into the 2-dimensional complex plane ($\mathbb{C}$). Defined as $z = a + bi$, where $a, b \in \mathbb{R}$ and $i = \sqrt{-1}$, complex arithmetic is essential in electrical engineering (AC circuits, impedance), quantum mechanics, fluid dynamics, and signal processing.
Mathematical Formulas for Complex Representations
| Form Name | Mathematical Notation | Conversion Formulas |
|---|---|---|
| Rectangular (Cartesian) | $z = a + bi$ | $a = r\cos\theta,\ b = r\sin\theta$ |
| Modulus / Magnitude ($r$) | $|z| = r = \sqrt{a^2 + b^2}$ | Euclidean distance from origin |
| Argument / Phase ($\theta$) | $\theta = \operatorname{atan2}(b, a)$ | Angle with positive real axis |
| Polar Form | $z = r(\cos\theta + i\sin\theta)$ | Often written as $r\angle\theta$ |
| Exponential (Euler's Formula) | $z = r e^{i\theta}$ | $e^{i\theta} = \cos\theta + i\sin\theta$ |