Complex Numbers: Difference between revisions
Created page with "Complex Numbers ==Basics== A complex number has two components: The real component and the imaginary components, typically denoted by <math>i</math> or <math>j</math>.<br> Here <math>i</math> represents the imaginary number <math>i^2 = -1</math> There are a few common operations on complex numbers: Consider a complex number <math>c = a + bi</math> * The conjugate of is <math>c^* = a - bi</math>, also sometimes denoted as <math>\bar{c}</math>. * The squared norm is <ma..." |
|||
Line 7: | Line 7: | ||
Here <math>i</math> represents the imaginary number <math>i^2 = -1</math> | Here <math>i</math> represents the imaginary number <math>i^2 = -1</math> | ||
There are a few common operations on complex numbers: | There are a few common operations on complex numbers:<br> | ||
Consider a complex number <math>c = a + bi</math> | Consider a complex number <math>c = a + bi</math>, | ||
* The conjugate of is <math>c^* = a - bi</math>, also sometimes denoted as <math>\bar{c}</math>. | * The conjugate of is <math>c^* = a - bi</math>, also sometimes denoted as <math>\bar{c}</math>. | ||
* The squared norm is <math>|c|^2 = c * c^* = a^2 + b^2</math>. Or <math>|c| = \sqrt{a^2 + c^2}</math>. | * The squared norm is <math>|c|^2 = c * c^* = a^2 + b^2</math>. Or <math>|c| = \sqrt{a^2 + c^2}</math>. | ||
* The angle is <math>\angle c = \arctan(b, a)</math>. | * The angle is <math>\angle c = \arctan(b, a)</math>. | ||
* The exponential representation is <math>c = |c| e^{i \theta}</math> where <math>\theta = \angle c</math>. | * The exponential representation is <math>c = |c| e^{i \theta}</math> where <math>\theta = \angle c</math>. | ||
* Addition and multiplication are as usual, but with <math>i^2 = -1</math>. | |||
==Euler's Formula== | ==Euler's Formula== |