complex conjugate
authorAndrew Lorimer <andrew@lorimer.id.au>
Mon, 18 Feb 2019 03:56:38 +0000 (14:56 +1100)
committerAndrew Lorimer <andrew@lorimer.id.au>
Mon, 18 Feb 2019 03:56:38 +0000 (14:56 +1100)
spec/complex.md
index 10eba3f554b4370b37316e9c0bf5d676ef158641..e7760be2d467eeee835e0783238c7cb8d0d4a891 100755 (executable)
@@ -111,9 +111,11 @@ $z^2+a^2=z^2-(ai)^2=(z+ai)(z-ai)$
 
 General form:
 $z=r \operatorname{cis} \theta$
-$= r\operatorname{cos}\theta+r\operatorname{sin}\theta i$
+$= r(\operatorname{cos}\theta+i \operatorname{sin}\theta)$
+
+$z=a+bi$  
+$z=r\operatorname{cis}\theta$  
 
-where
 
 - $z=a+bi$
 - $r$ is the distance from origin, given by Pythagoras ($r=\sqrt{x^2+y^2}$)
@@ -122,12 +124,16 @@ where
 Note each complex number has multiple polar representations:
 $z=r \operatorname{cis} \theta = r \operatorname{cis} (\theta+2 n\pi$) where $n$ is integer number of revolutions
 
+### Conjugate in polar form
+
+$$(r \operatorname{cis} \theta)^{-1} = r\operatorname{cis} (- \theta)$$
+
 ### Multiplication and division in polar form
 
 $z_1z_2=r_1r_2\operatorname{cis}(\theta_1+\theta_2)$ (multiply moduli, add angles)
 
 ${z_1 \over z_2} = {r_1 \over r_2} \operatorname{cis}(\theta_1-\theta_2)$ (divide moduli, subtract angles)
 
-## de Moivres' Theorum
+## de Moivres' Theorem
 
-$(r\operatorname{cis}\theta)^n=r^n\operatorname{cis}(n\theta)$
+$(r\operatorname{cis}\theta)^n=r^n\operatorname{cis}(n\theta)$ where $n \in \mathbb{Z}$