I am seeing that complex numbers can be "rotated" through the complex plane but how can we show this in general?
For example let's say I start with the point $z_0 = a + bi$ in quadrant I (assuming it even makes sense to talk quadrants in the complex plane).
If I multiply it by $i$ I get $z_1 = ai + bi^2 = -b + ai$ which means going to the left $b$ positions on the real axis and then up $a$ units on the imaginary axis (quadrant II).
Multiply by $i$ again and $z_2 = -a - bi$, over to the left $a$, down $b$ (quadrant III).
Multiply by $i$ again and $z_3 = b - ai$, over to the right $b$, down $a$ (quadrant IV).
Multiply by $i$ again and $z_4 = a + bi = z_0$, so we're back to the start again.
But does this "90-degree rotational quality" work for any multiplier? What if we want to rotate by an arbitrary degree? How do we show how the two relate?
Now I know on the original unit circle we can define $\cos(\theta)$ and $\sin(\theta)$ as the ratios of sides of a right triangle, or also the $x$ and $y$ coordinates of where that triangle meets the unit circle.
Do we say it's analogous to defining such a triangle in the complex plane with $z = a + bi = \cos(\theta) + \sin(\theta)i$ as $x$ and $y$ coordinate again?
I feel like I'm almost there, trying to understand how $e^{ix}$ comes into play, but I want to understand how these concepts relate so I can understand what we're defining and how the operations work and where they come from.
Suppose we have:
$w = \cos \theta + i\sin\theta\\ z = \cos \phi + i\sin\phi$
And we multiply them together:
$wz = $$(\cos \theta + i\sin\theta)(\cos \phi + i\sin\phi)\\ (\cos\theta\cos\phi - \sin\theta\sin\phi) + i(\sin\theta\cos\phi + \cos\theta\sin\phi)\\ \cos(\theta+\phi) + i\sin(\theta + \phi)$
We are working with complex numbers unit magnitude. i.e. $|z| = 1$ but the concept still holds as any complex number can be written $z = |z|(\cos\theta + i\sin \theta).$ $\theta$ is called "the argument" of the complex number.
Multiplying complex numbers adds the arguments.
If an opperation of multiplication behaves like an operation of addition that is a property of exponentials.
We define $e^{i\theta} = \cos \theta + i\sin \theta$
$z = |z|e^{i\theta}\\w =|w| e^{i\phi}\\zw = |zw| e^{i(\theta+\phi)} = |zw|(\cos(\theta+\phi) + i\sin(\theta+\phi))$
Taylor series...
Background
$e^x = \sum_\limits{n=0}^\infty \frac {x^n}{n!}\\ \cos x = \sum_\limits{n=0}^\infty \frac {x^{2n}}{2n!}\\ \sin x = \sum_\limits{n=0}^\infty \frac {x^{2n+1}}{(2n+1)!}$
or:
$e^x = 1 + x + \frac {x^2}{2} + \frac {x^3}{6} +\cdots\\ \cos x = 1 - \frac {x^2}{2} + \cdots\\ \sin x = x - \frac {x^3}{6} + \cdots$
$e^{ix} = 1 + ix + \frac {(ix)^2}{2} + \frac {(ix)^3}{6} +\cdots\\ e^{ix} = 1 + ix - \frac {x^2}{2} - i\frac {x^3}{6} + \frac {x^4}{4!} + \cdots$
Collect the real terms and the imaginary terms...
$e^{ix} = $$(1 - \frac {x^2}{2} + \frac {x^4}{4!}-\cdots ) + (ix - i\frac {x^3}{6} + i\frac {x^5}{5!} - \cdots)\\ \cos x + i\sin x$