@dpiponi@mathstodon.xyz Profile picture
Aug 18, 2019 33 tweets 7 min read Read on X
Couple of years ago I did some GPS related work taking data from the analogue-to-digital converters in the radio receivers to the binary data stream. I think I'm going to (very slowly) tweet a series of tweets on the large amount of pretty mathematics involved at each stage.
Used box like this ettus.com/product-catego…
Measures varying electric (I think) field E(t) in antenna. Challenge: we want 1.5GHz signal. Nyquist sampling theorem says we need 3GHz samples. How to do that on a PC? en.wikipedia.org/wiki/Nyquist%E…
Here's trick: full Nyquist theorem says you can reconstruct signal from samples if all frequencies lie in the range [f₁,f₂] and you sample at rate 2(f₂-f₁). If analogue hardware filters signal to narrow range before sampling we're fine eg. 1.5GHz±20MHz en.wikipedia.org/wiki/Nyquist–S…
If the field at the antenna is E(t) you probably expect that the samples given by the hardware are E(t₁), E(t₂),... at equally spaced intervals. In fact the data produced by SDRs are typically complex-valued samples...
What actually happens is this: if hardware receives the signal cos(2πft), you can think of this as (exp(2πift)+exp(-2πift))/2, the sum of two frequencies. The hardware throws away the negative frequency part and gives you samples from exp(2πift). I should say how it does this...
Interlude: I've mentioned a couple of theorems so far. If you hadn't noticed, this is my primary focus: the amazing array of theorems involved in getting GPS info from satellites to us.
If we start with real valued E(t) and remove the negative frequency parts we end up with E(t)+iF(t). For example, if E(t)=cos(2πift) then F(t)=sin(2πift) and E(t)+iF(t) is exp(2πift). The operation that gives us F from E is called the Hilbert transform.
en.wikipedia.org/wiki/Hilbert_t…
So from a functional perspective a software defined radio gives us samples of the electric field E and also samples from its Hilbert transform F. As a developer this was my starting point, receiving these samples. But why do we want exp(2πift) instead of cos(2πift)?
(BTW I don't know how an SDR physically computes the Hilbert transform. In principle it's just a convolution and engineers have a long history of building circuits to compute convolutions. But it's a particularly hard convolution to compute.)
Correction: I put to many i's in! I meant exp(2πift), cos(2πft) and sin(2πft).
Suppose we want to transmit some music a(t). An AM radio station does this by broadcasting the field a(t)cos(2πft). The cos(2πft) is called the carrier (f might be 100MHz, say) and the music is slowly varying by comparison (maybe it has components up to 20KHz).
So if I receive E(t)=a(t)cos(2πft) at my antenna, how can I recover a(t) to play through the speaker?
Old school way: it's easy (*) to build a circuit to compute |E(t)| from E(t) and another to smooth out the high frequency oscillations leaving us with a(t)/2.

(*) easy=a clumsy kid of age 10 could build one from discrete components by following instructions in a kit
In SDR input field cos(2πft) is converted to samples of exp(2πift). For a linear system this means for a slowly varying a(t), E(t)=a(t)cos(2πft) is converted to E(t)+iF(t)=a(t)exp(2πift).
(Here's a theorem about what "slowly varying means":
en.wikipedia.org/wiki/Hilbert_t…)
This means that in principle you can decode AM radio in a few lines of code by asking the SDR for its complex valued samples E(t)+iF(t)=a(t)exp(2πift), finding the absolute value |E(t)+iF(t)|=|a(t)|, and interpreting that as audio. In the absence of noise that might actually work
(Aside: FM encodes the audio in the phase, not the absolute value. You can look at actual code for a low-cost SDR here: github.com/dpiponi/mini_fm By convention the real and imaginary parts are called I and Q and those names are used in that code.)
(Correction: in some tweets above I put too many i's in! I meant exp(2πift), cos(2πft) and sin(2πft).)
If your SDR gives you samples u(t)=a(t)exp(2πift) then another way to recover a(t) is to compute u(t)exp(-2πift). Because we have complex samples removing the carrier is just complex multiplication! But there's a catch. The signal we actually receive is u(t)=a(t)exp(2πift)+noise
So multiplying by exp(-2πift) gives us a(t)+other noise. We've turned our problem into another: detecting a slowly varying message a(t) in the presence of additive noise.

Suppose we can solve this problem. Here's something really cool: if you don't know the exact carrier...
...we can try looking for a message in u(t)exp(-2πift) for different values of f. In other words, after we've collected our samples we can easily try many different carriers just by multiplication. For GPS this turns out to be really useful. The satellites are moving at km/s...
...so there's significant doppler shift. If we don't know the velocity we need to try many different frequencies. Having complex valued samples makes this easy.

But now I need to talk about that noise term. OMG "noise" is an understatement!
The GPS satellites (~20000 km away) transmit an electromagnetic field which ultimately causes electrons in your antenna to oscillate. This is what a radio receiver detects. But the these oscillations are so tiny they're smaller than the motion due to the heat of the antenna!
And it gets worse. The GPS satellites all transmit using the same carrier frequency. We need to disentangle multiple signals that have been added together and buried under thermal noise. To do this we'll need some probability theory...
Pick N numbers independently uniformly at random from set {-1,1}. Call them (a(1),...,a(N)). Pick N more called (b(1),...,b(N)). Use ∑ to mean sum i=1 to N. Let E be expectation. You can show:

E[∑a(i)a(i)]=N (trivial :)
E[∑a(i)b(i)]=0
Standard deviation of ∑a(i)b(i) = 1/√N
I meant sqrt(N)!
In an ideal scenario, if you know a, and receive sequence u(i)=Aa(i)+Bb(i) with unknown A and B you compute Z=∑a(i)u(i). You can show E[Z]=A. Also, if N is large enough, N >> √N so the contribution to Z due to ∑a(i)b(i) is relatively small and E[Z] is a good estimate for A.
Less ideal: suppose a(i) is being transmitted on a repeating loop but we don't know when the loop starts. What we actually receive now is u(i)=Aa(i+r mod N)+Bb(i) where we don't know r.
Because I said a(i) are independent, when r≠0 mod N, E[∑a(i)a(i+r)] = 0 with std dev √N. When we compute Z=∑a(i)u(i) we get E[Z]=N for r=0 mod N, otherwise 0. So if N >> √N and we keep computing Z for the last N numbers we've received we get a peak whenever the a(i) restart
Here I've used a discrete variable i to index a as if we receive a(i) neatly one at a time, but in practice the EM field is a function of time. The signal being sent is a periodic "squarish" shaped wave g(t)=a(floor(ft) mod N) where f is some frequency...
(BTW we can do better than picking a(i) randomly, but I don't want to talk about that yet as it deserves its own separate section.)
Now with pictures. Let's just look at an example "random" function g(t) and a copy of this function offset by some number r, g(t+r). The animation of the GIF shows what happens as you vary r. I've illustrated g(t) and g(t+r) in the top left.
At the top right is the product of these two functions, and at the bottom left is a graph showing how when we sum g(t)*g(t+r) over the period of g, that sum varies with r. The vertical line shows the value of r at that moment in time in the upper graphs.
I hope you can see that the graph at the bottom left shows how well g(t) and g(t+r) match up. There are some "accidental" peaks where g(t) looks similar to itself a=but the big peak happens when r=0 mod 20 (20 being the period of g in this example).

• • •

Missing some Tweet in this thread? You can try to force a refresh
 

Keep Current with @dpiponi@mathstodon.xyz

@dpiponi@mathstodon.xyz Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @sigfpe

Nov 6, 2022
I want to follow up what I said about Feynman's sum over all paths approach to optics (and QM) by giving some actual details. I'm going to try to use no more that high school geometry and some basic complex numbers...

I'm going to assume you know that exp(iθ) = cos(θ)+isin(θ) (and so is essentially the position of a point on the unit circle that has started at 1 and is travelled anti-clockwise around the origin through angle θ)...
The idea in the many path formulations is that a particle that has traveled a path from P to Q of length L has an "amplitude" associated with it that equals exp(iL/ℏ) where ℏ is just some constant...
Read 21 tweets
Nov 4, 2022
The most Lovecraftian thing I know in reality is Feynman's sum over paths formulation of quantum mechanics. Seriously...
As kids we're taught light travels in straight lines. What Feynman realised is that light takes every path. *Every* path. That thing you're looking at, it's the sum of contributions from every possible path any light could have taken to get there...
So why isn't it infinitely bright? Because the quantity being summed is a complex number. Every path has a different phase meaning that different contributions from different paths point in different directions in the complex plane and most paths cancel each other out...
Read 6 tweets
Aug 19, 2022
I don't understand how the concept of expectation has taken such an iron grip on so many people's minds. The button on the right is not equivalent to $25,000,000.
Expectation is a cool concept because often we have concentration theorems. Like the central limit theorem says that when we have many repeated plays, it's quite likely we can get away with replacing a gamble with its expectation. But there are no such theorems about unique plays
The Kelly criterion is a good example. If you maximise expectation then probability tends to concentrate around you losing everything despite your expectation being high.

en.m.wikipedia.org/wiki/Kelly_cri…
Read 5 tweets
Dec 12, 2021
Some musings on life, the universe and everything. But first a mathematical preliminary. We often use the exponential distribution to model the time before a “memoryless” random event happens, like nuclear decays...
Imagine a universe with lots of planets and the physics and biology in this universe works like this: a certain (large) N random events have to happen in a row before intelligent life that can contemplate its existence evolves...
Eg. the first such event might be the chance formation of an autocatalytic set [2]. It’s a simple universe so we say that the time T_i for the ith event to take place is exponential with the same mean for each T_i...
Read 14 tweets
Oct 23, 2021
Sometimes it's hard to pick out an element of a set even though there is an abundance of elements. Here's one of my favourites...
...every real number can be written as a continued fraction which means you can write it as a+1/(b+1/(c+1/(d+1/(e+1/...)))). For example for the golden ratio we use a=b=c=d=e=...=1 and for sqrt(2) we use a=1 and b=c=d=e=...=2...
...For some real numbers it makes sense to talk of the geometric mean of the continued fraction. By this I mean the limit of the sequence a, sqrt(ab), cube root(abc), fourth root(abcd), fifth root (abcde), ...
Read 6 tweets
Aug 8, 2021
My view of tensor products is this: if you know you're going to compute a bilinear product of a and b, but you don't know which one (maybe a dot, or cross, or something else random)...
...then a⊗b is a vector that contains precisely the information you need to do this with a linear map - no more, no less.
This is just a restatement in English of the universal property that scares people off. (And scared me when I first learnt it.)
Read 11 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Don't want to be a Premium member but still want to support us?

Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal

Or Donate anonymously using crypto!

Ethereum

0xfe58350B80634f60Fa6Dc149a72b4DFbc17D341E copy

Bitcoin

3ATGMxNzCUFzxpMCHL5sWSt4DVtS8UqXpi copy

Thank you for your support!

Follow Us!

:(