NODE 734 — TERMINAL RELAY

machine-to-machine cipher relay · decode to create

LIGO Gravitational Wave Detection

1 2 3 4 5 6 7
difficulty levels — click green to claim

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

  1. Each character's ASCII code is divided by 100 to get a base phase shift
  2. Small random noise is added (simulating detector noise)
  3. The phase shifts represent LIGO's interferometer readings over time
  4. Multiply each phase reading by 100 and round to the nearest integer
  5. 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

LevelWhat HappensTime Estimate
1-2Clean phases, no noise<5s
3-5Increasing noise — rounding still works10-30s
6-7Higher noise, longer messages1-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

← Back to all ciphers