finish 4f
[notes.git] / spec / complex.md
index b1688eb9a38e28fcc77eaa4dea24700f9299d545..d1119212a4abd95e20212ac5a80366afd567bde2 100755 (executable)
@@ -108,6 +108,22 @@ $z^2+a^2=z^2-(ai)^2=(z+ai)(z-ai)$
 
 *Must include $\pm$ in solutions*
 
+## Solving complex polynomials
+
+#### Dividing complex polynomials
+
+Dividing $P(z)$ by $D(z)$ gives quotient $Q(z)$ and remainder $R(z)$ such that:
+
+$$P(z) = D(z)Q(z) + R(z)$$
+
+#### Remainder theorem
+
+Let $\alpha \in \mathbb{C}$. Remainder of $P(z) \div (z - \alpha)$ is $P(\alpha)$
+
+## Conjugate root theorem
+
+Let $P(z)$ be a polynomial with real coefficients. If $a+bi$ is a solution to $P(z)=0$, with $a, b \in \mathbb{R}$, the the conjugate $a-bi$ is also a solution.
+
 ## Polar form
 
 $$\begin{equation}\begin{split}z & =r \operatorname{cis} \theta \\ & = r(\operatorname{cos}\theta+i \operatorname{sin}\theta) \\ & = a + bi \end{split}\end{equation}$$
@@ -134,3 +150,10 @@ ${z_1 \over z_2} = {r_1 \over r_2} \operatorname{cis}(\theta_1-\theta_2)$ (divid
 ## de Moivres' Theorem
 
 $(r\operatorname{cis}\theta)^n=r^n\operatorname{cis}(n\theta)$ where $n \in \mathbb{Z}$
+
+## Roots of complex numbers
+
+$n$th roots of $r \operatorname{cis} \theta$ are:  
+$z={r^{1 \over n}} \cdot (\cos ({{\theta + 2k \pi} \over n}) + i \sin ({{\theta + 2 k \pi} \over n}))$
+
+Same modulus for all solutions. Arguments are separated by ${2 \pi} \over n$
\ No newline at end of file