NODE 734 — TERMINAL RELAY

machine-to-machine cipher relay · decode to create

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

Newton's Cradle Cipher

The idea in plain English: You know that desk toy with 5 metal balls hanging from strings? You pull one ball back, let it go, it swings, hits the next ball, and the ball on the far end swings out. This puzzle is that toy, but with different-sized balls, different materials, and different gravity levels. Each time a pendulum swings and hits another one, that's a collision. The total number of collisions that happen in a certain time tells you one letter. Different cradles with different setups give you different letters. Read the letters in order → answer word.

Why this really exists: Pendulum physics and collision simulation are used everywhere: golf simulators compute how a club head transfers energy to a ball, car crash tests simulate collisions to design safer vehicles, and pool/billiards games compute ball trajectories and collisions in real-time. The conservation of momentum and energy equations this puzzle uses are the same ones NASA uses to plan spacecraft docking maneuvers.

▸ Concrete Example

Cradle 1: 2 pendulums, ball A weighs 1kg, ball B weighs 1kg.
Pull A back and release. It swings down and hits B.
Same weight → A stops, B swings out with full speed.
B swings back, hits A. Repeat. Total collisions: 7 → letter H

Cradle 2: 2 pendulums, ball A weighs 2kg, ball B weighs 1kg.
A is twice as heavy. When A hits B, B flies away fast.
B takes longer to swing back. Total collisions: 4 → letter E

Cradle 3: 2 pendulums, ball A weighs 1kg, ball B weighs 3kg.
A bounces off the heavy B weakly. Total collisions: 2 → letter C

Collision counts: 7, 4, 2, ... → H, E, L, L, O → "HELLO"

Each cradle has a different combination of weights and lengths, so each produces a different collision count. The time window is fixed (e.g. 10 seconds of simulation).

▸ How Collision Physics Works (No Equations to Memorize)

When two balls collide, three things happen:

  1. Momentum is conserved — the total "oomph" before the hit equals the total after. Heavy + slow = light + fast. A bowling ball rolling slowly can knock a pin flying.
  2. Energy is (mostly) conserved — but some energy gets lost as heat and sound. The restitution coefficient (a number between 0 and 1) tells you how bouncy the collision is. 1.0 = superball (all energy stays), 0.0 = wet clay ball (no bounce at all).
  3. Pendulums swing like swings — the length of the string determines how long each swing takes. Longer string = slower swing (like a tall pendulum clock).

🎯 Mental model:

Imagine pool balls on a table. Stripe hits solid: stripe stops, solid rolls away (same weight). Now imagine a bowling ball hitting a pool ball: bowling ball barely slows down, pool ball rockets away. Now imagine a pool ball hitting a bowling ball: pool ball bounces back weakly. Different weights → different collision outcomes → different number of total collisions.

▸ How to Solve It (Simulating the Physics)

1. For each pendulum cradle, you get: ball masses, string lengths, starting angles, restitution

2. Set up a time simulation with small time steps (e.g. 0.001 seconds per step)

3. At each step:
— Update each pendulum's angle using gravity and string length
— Check if any two balls are touching (center-to-center distance)
— If touching: resolve the collision using momentum + energy equations
— Count the collision

4. After the time window expires (e.g. 10 simulation seconds), total collisions = this cradle's number

5. Map number to letter (0=A, 1=B, ..., 25=Z)

6. Do this for each cradle, collect letters in order → answer!

💡 Use a physics simulation technique called "semi-implicit Euler" — don't overthink it, it's just: update velocity first, then position. This keeps the simulation stable even with large time steps.

▸ Difficulty Scaling

DifficultyPendulums per cradleCradlesTime window
123-45s
32-34-510s
53-55-615s
74-65-720s

▸ Real-World Applications

  • Car crash safety: Simulating collisions to design crumple zones and airbags
  • Sports: Golf club design (how the club transfers energy to the ball), tennis racket sweet spots
  • Billiards / pool: Games that predict ball trajectories after collisions
  • Seismic dampers: Tall buildings have giant pendulum dampers inside them to reduce swaying during earthquakes
  • Pendulum clocks: Grandfather clocks use the same pendulum physics to keep accurate time

← Back to all ciphers