diff options
| author | Marius Peter <marius.peter@tutanota.com> | 2022-04-05 19:59:23 +0200 |
|---|---|---|
| committer | Marius Peter <marius.peter@tutanota.com> | 2022-04-05 19:59:23 +0200 |
| commit | 5782c7c067fcd2331e74de220d404f77b766e6c6 (patch) | |
| tree | 9f17960c2a1962b2405651784d323b3fd8adf75f /wiki/engineering/qam-modulation.org | |
| parent | d798383d2f8509a4f42ff3b68375f66c543ab5ce (diff) | |
Lots of wiki reorg & new files!
Diffstat (limited to 'wiki/engineering/qam-modulation.org')
| -rw-r--r-- | wiki/engineering/qam-modulation.org | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/wiki/engineering/qam-modulation.org b/wiki/engineering/qam-modulation.org new file mode 100644 index 0000000..0a19036 --- /dev/null +++ b/wiki/engineering/qam-modulation.org @@ -0,0 +1,70 @@ +# -*- mode: org; -*- + +#+TITLE: Quadrature Amplitude Modulation +#+SUBTITLE: A method for digital modulation widely used in modern telecommunication. +#+AUTHOR: Marius Peter +#+DATE: <2022-03-31 Thu> + +#+DESCRIPTION: Quadrature Ampliture Modulation: a method for digital modulation widely used in modern telecommunication. +#+MACRO: QAM quadrature amplitude modulation + + +#+begin_abstract +Quadrature Amplitude Modulation is widely used. +#+end_abstract + + +* Complex numbers + +Euler equation forming the basis of {{{QAM}}}. + +#+NAME: euler +#+CAPTION: This is a caption. +\begin{equation} +e^{j\theta} = \cos(\theta) + j\sin(\theta) +\end{equation} + +Equation [[euler]] tells us that any complex phasor can be decomposed into +the sum of a cosine and sine component. + + +** Cosine---the in-phase component + +#+NAME: cosine +\begin{equation} +\cos(2\pi f_0 t) = \frac{e^{j2\pi f_0 t} + e^{-j2\pi f_0 t}}{2} += \frac{e^{j2\pi f_0 t}}{2} ++ \frac{e^{-j2\pi f_0 t}}{2} +\end{equation} + +We see that this equation features the following elements: + +| <r> | | +| \( -j2\pi f_0 t \) | Negative frequency | +| \( j2\pi f_0 t \) | Positive frequency | +| \( \frac{1}{2} \) | Component magnitude | + + +** Sine---the quadrature component + +#+NAME: sine +\begin{equation} +\sin(2\pi f_0 t) = \frac{e^{j2\pi f_0 t} - e^{-j2\pi f_0 t}}{2} += \frac{e^{j2\pi f_0 t}}{2} +- \frac{e^{-j2\pi f_0 t}}{2} +\end{equation} + + +* The constellation + + +#+begin_insight +QAM is based on imaginary numbers. +#+end_insight + + +| Real | Imaginary | +|------+-----------| +| 1 | i | +| 2 | -i | +| | | |