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..." |
|||
(8 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
Complex Numbers | Complex Numbers | ||
==Basics== | ==Basics== | ||
Line 7: | Line 6: | ||
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} = |c| (\cos(\theta) + i \sin(\theta))</math> where <math>\theta = \angle c</math>. | ||
** In this representation, <math>\theta</math> is known as the [[Wikipedia: Argument | argument]] and <math>|c|</math> is the modulus or [[Wikipedia: Absolute_value#Complex_numbers | absolute value]]. | |||
** This analagous to polar coordinates representation for 2d vectors (angle and magnitude). | |||
** Note that the word ''amplitude'' is overloaded and can refer to either the complex number, the absolute value, or the angle depending on context. | |||
* Addition and multiplication are as usual, but with <math>i^2 = -1</math>. | |||
==Euler's | ==Euler's formula== | ||
{{ main | Wikipedia: Euler's formula }} | {{ main | Wikipedia: Euler's formula }} | ||
Euler's formula states: | Euler's formula states: | ||
<math display="block> | <math display="block"> | ||
e^{ix} = \cos(x) + i \sin(x) | e^{ix} = \cos(x) + i \sin(x) | ||
</math> | </math> | ||
Line 25: | Line 27: | ||
===Properties=== | ===Properties=== | ||
* The conjugate is <math>e^{-ix}</math> since cosine is symmetric and sine is odd (i.e. <math>sin(-x) = -sin(x)</math>) | * The conjugate is <math>e^{-ix}</math> since cosine is symmetric and sine is odd (i.e. <math>sin(-x) = -sin(x)</math>) | ||
==Euler's identity== | |||
{{main | Wikipedia: Euler's identity}} | |||
Euler's identity states: | |||
<math display="block"> | |||
e^{i \pi} + 1 = 0 | |||
</math> | |||
==Resources== | ==Resources== | ||
* [https://web.stanford.edu/~boyd/ee102/complex-primer.pdf https://web.stanford.edu/~boyd/ee102/complex-primer.pdf] Brief review of complex numbers | * [https://web.stanford.edu/~boyd/ee102/complex-primer.pdf https://web.stanford.edu/~boyd/ee102/complex-primer.pdf] Brief review of complex numbers |