blob: 0a19036e58a629a6a051a8b2bb3d859700e26277 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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 |
| | |
|