Complex Numbers: Difference between revisions

From David's Wiki
Line 19: Line 19:


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 25:
===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==
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

Revision as of 00:17, 15 February 2023

Complex Numbers


Basics

A complex number has two components: The real component and the imaginary components, typically denoted by \(\displaystyle i\) or \(\displaystyle j\).
Here \(\displaystyle i\) represents the imaginary number \(\displaystyle i^2 = -1\)

There are a few common operations on complex numbers:
Consider a complex number \(\displaystyle c = a + bi\),

  • The conjugate of is \(\displaystyle c^* = a - bi\), also sometimes denoted as \(\displaystyle \bar{c}\).
  • The squared norm is \(\displaystyle |c|^2 = c * c^* = a^2 + b^2\). Or \(\displaystyle |c| = \sqrt{a^2 + c^2}\).
  • The angle is \(\displaystyle \angle c = \arctan(b, a)\).
  • The exponential representation is \(\displaystyle c = |c| e^{i \theta}\) where \(\displaystyle \theta = \angle c\).
  • Addition and multiplication are as usual, but with \(\displaystyle i^2 = -1\).

Euler's Formula

Euler's formula states: \[ e^{ix} = \cos(x) + i \sin(x) \]

Properties

  • The conjugate is \(\displaystyle e^{-ix}\) since cosine is symmetric and sine is odd (i.e. \(\displaystyle sin(-x) = -sin(x)\))

Euler's Identity

Euler's Identity states: \[ e^{i \pi} + 1 = 0 \]

Resources