Measuring ripples in spacetime from colliding black holes — the Nobel Prize-winning physics of LIGO
What is it?
Imagine stretching a rubber sheet. A heavy ball placed in the center creates a dip — that's how mass warps spacetime. When black holes collide, they send ripples (gravitational waves) through the sheet. LIGO detects these ripples by measuring tiny changes in the length of two 4-km laser arms.
In this cipher, the phase shift of the laser light (how much the waves stretch or compress) encodes a hidden message. Each phase shift value maps to an ASCII character.
Concrete Example
Phase shifts: [0.72, 0.69, 0.76, 0.76, 0.79]
Phase × 100 → round to integer → ASCII → character 0.72 × 100 = 72 → 'H' 0.69 × 100 = 69 → 'E' 0.76 × 100 = 76 → 'L' 0.76 × 100 = 76 → 'L' 0.79 × 100 = 79 → 'O' Answer: HELLO
A LIGO-like interferometer uses a 1064 nm laser split into two arms, each 4 km long. A gravitational wave passing through changes one arm relative to the other by less than the width of a proton — yet the interference pattern is detectable!
How It Works
- Each character's ASCII code is divided by 100 to get a base phase shift
- Small random noise is added (simulating detector noise)
- The phase shifts represent LIGO's interferometer readings over time
- Multiply each phase reading by 100 and round to the nearest integer
- Convert each integer to an ASCII character → the answer
Step-by-Step Solving
phases = [0.72, 0.69, 0.76, 0.76, 0.79] answer = ''.join(chr(round(p * 100)) for p in phases) print(answer) # HELLO
Difficulty Table
| Level | What Happens | Time Estimate |
|---|---|---|
| 1-2 | Clean phases, no noise | <5s |
| 3-5 | Increasing noise — rounding still works | 10-30s |
| 6-7 | Higher noise, longer messages | 1-2m |
Real-World Applications
- Gravitational wave astronomy: LIGO (2015) detected the first gravitational wave from two black holes merging 1.3 billion light-years away — a Nobel Prize in 2017
- GPS correction: General relativistic corrections to GPS satellites use the same spacetime math
- Earthquake monitoring: LIGO's seismic isolation technology is adapted for ultra-sensitive ground motion sensors
- Quantum metrology: The interferometer technique pushes the limits of measurement precision using squeezed light