Skip to content
Snippets Groups Projects
Commit eb85885d authored by Michael Wimmer's avatar Michael Wimmer
Browse files

Fix missing i in expression for sine. Closes #5

parent 87c2d8ca
No related branches found
No related tags found
No related merge requests found
Pipeline #42648 passed
......@@ -173,7 +173,7 @@ As a result, $y$ is only defined up to $2\pi$.
Furthermore, we can define the sine and cosine in terms of complex exponentials:
$$\cos(x) = \frac{e^{{\rm i} x} + e^{-{\rm i} x}}{2}$$
$$\sin(x) = \frac{e^{{\rm i} x} - e^{-{\rm i} x}}{2}$$
$$\sin(x) = \frac{e^{{\rm i} x} - e^{-{\rm i} x}}{2i}$$
Most operations on complex numbers are easiest when converting the complex number to its *polar form*, using the exponential.
Some operations which are common in real analysis are then easily derived for their complex counterparts:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment