The second rung · space gets a direction
[3, 4]
Two numbers just sitting there look boring. But read them as an arrow — 3 this way, 4 that way — and they wake up: now they have a direction and a length. That's a vector. You're about to draw one with your own hands.
Why this quietly runs your life
Your phone's GPS displacement ("you're 400m northeast of where you parked"), a joystick push (game physics happening right in your hand), a shove on a door, the wind's force on a sail — all vectors: direction plus size. And when an AI reads a word like "dog", it doesn't keep the letters — it stores a vector, an arrow pointing somewhere in a space with hundreds of directions, and "puppy" lands pointing almost the same way. You've been doing this math with your hands your whole life. It just never had a name — until now.
Step 1: a point is an address. An arrow is a trip.
Coordinates like (3, 4) just tell you WHERE a dot sits on a grid — an address, nothing more. A vector is different: it's the arrow FROM the origin TO that dot. Same two numbers, but now they're doing a job — pointing somewhere and telling you how far.
Step 2: the two numbers have names
Those numbers are the arrow's components: x is how far it leans east/west, y is how far it leans north/south.
Step 3: stretch the arrow yourself
Push the buttons below to change the arrow's own x and y. Watch it redraw live — and watch its length (the straight-line distance from tail to tip) update with it. That length is just the Pythagorean theorem wearing a trench coat: length = √(x² + y²).
[3, 4] · length = 5.00
cyan = your arrow
Step 4: tip to tail is how arrows add
Hit "add [3, 4] tip-to-tail" above. Your arrow gets a second arrow glued onto its tip — walk 3 more east, 4 more north from wherever you landed. The green arrow is the shortcut straight there. It's not the sum of the lengths; it's the diagonal.
Prove it · get one wrong and I’ll walk you through it
Two quick ones and the rung is yours.
An arrow goes 6 steps east and 8 steps north. What's its length?
You walk 3 blocks east, then 4 blocks north, tip-to-tail. How far are you from where you started?
Answer both to unlock the next rung ↓
Vectors — mastered.
You stopped seeing [x, y] as an address and started seeing it as an arrow — direction, length, and a way to add two of them tip-to-tail. Anywhere this shows up again — GPS, forces, an AI's word-vectors — you skip it.
Next rung → The Dot Product