Changes between Version 70 and Version 71 of Other/Summer/2024/signal


Ignore:
Timestamp:
Aug 6, 2024, 9:51:31 PM (7 weeks ago)
Author:
wesleychen
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Other/Summer/2024/signal

    v70 v71  
    4141You may notice that this looks strikingly similar to some sort of sine wave and you would be 100% correct. Every signal can be thought of as a combination of sine waves. Each of theses sine waves has its own frequency and phase, meaning how fast it goes up and down and where the sine wave is centered, respectively.
    4242
     43----
     44
    4345**Frequency Domain**
    4446
     
    5860[[Image(Screen Shot 2024-08-06 at 2.31.18 PM.png, 400px​)]]
    5961
    60 The axis going into the page is the time and the vertical / horizontal axis are the phase and amplitude respectively. There are many other ways to think about these axis as well including the coefficients of sine and cosine waves and most notably real and imaginary numbers. This representation gives rise to a new way to represent the signal algebraically as well. S(t) = I(t) + Q(t)i, where S(t) is the signal, I(t) is the real component, Q(t) is the imaginary component and i is the imaginary number sqrt(-1). This imaginary number representation is advantageous in making the math in later stages much simpler.
     62The axis going into the page is the time and the vertical / horizontal axis are the phase and amplitude respectively. There are many other ways to think about these axis as well including the coefficients of sine and cosine waves and most notably real and imaginary numbers. This representation gives rise to a new way to represent the signal algebraically as well. S(t) = I(t) + Q(t)''i'', where S(t) is the signal, I(t) is the real component, Q(t) is the imaginary component and i is the imaginary number sqrt(-1). This imaginary number representation is advantageous in making the math in later stages much simpler.
    6163
    6264[[Image(Screen Shot 2024-08-06 at 3.02.06 PM.png​, 300px)]]
     
    6870In order to send signals as higher frequencies, we use a technique call modulation. We take the real part, I(t), of a signal and multiply it with a sine wave of the desired high frequency and the imaginary part, Q(t) with a cosine wave of that same frequency.
    6971
    70 S(t) = I(t) + Q(t)i -> I(t)*sin(wt) + Q(t)*cos(wt)
     72S(t) = I(t) + Q(t)''i'' -> I(t)*sin(wt) + Q(t)*cos(wt)
    7173
    7274Note how the resulting signal is always real, even if the original signal had an imaginary component. It is important to remember that even though complex/imaginary signals are useful for various reasons, they don't actually exist in the real world because... well, they are imaginary!
     
    9698In order to determine the bits from a signal we first have to get our IQ data from the signal. This is done by multiplying by sine and cosine waves of the carrier frequency.
    9799
    98 S(t) = I(t) + Q(t)i
     100S(t) = I(t) + Q(t)''i''
    99101
    100 S(t)*sin(wt) -> low pass filter -> I(t)\\
    101 
     102S(t)*sin(wt) -> low pass filter -> I(t)
    102103S(t)*cos(wt) -> low pass filter -> Q(t)
    103104