STEM LAB · Linear Algebra Series Module 0 · Lesson 1 of 3
Module 0.1

Vectors as Space Arrows

Before you learn a single symbol, build the picture in your head: a vector is just an arrow in space, pointing somewhere with some length.

1

Intuition First

Imagine standing in an empty, featureless space. If someone tells you to "move 5 units," the instruction is meaningless — 5 units in which direction? A vector exists precisely to remove that ambiguity: it's an arrow anchored in space that encodes two pieces of information at once — magnitude (how long) and direction (which way it points).

A scalar, by contrast, is just a lonely number — temperature, mass, price. A vector is an active instruction: a push, a displacement, a velocity. It doesn't just say "how much," it says "which way."

2

Start With a Number You Can Check by Hand

Before any general formula, look at one concrete arrow: starting at the origin, walk 3 steps right and 4 steps up.

Vector v(3, 4)
Its length ‖v‖√(3² + 4²)
= √(9 + 16)= √25
‖v‖ =5

That's just the Pythagorean theorem — the arrow's length is the hypotenuse of the right triangle formed by its horizontal and vertical steps. Keep this "3-4-5" picture in mind; the general formula below is just this idea stretched to any number of dimensions.

3

Try It — Vector Addition

Drag the tip of either arrow. Watch how they join tip-to-tail to form a new vector, v + w.

◆ VECTOR ADDITION — LIVE drag either arrow tip
Vector v
(3.0, 4.0)
Vector w
(2.0, -1.0)
v + w
(5.0, 3.0)
‖v + w‖
5.83
4

Formal Definition

In an n-dimensional real space ℝⁿ, a vector v is written as an ordered list of numbers:

Its magnitude is exactly the 3-4-5 idea above, generalized — square every component, add them up, take the root:

ℝⁿn-dimensional real space — "flat plane" or "3D space" generalized to any number of directions
v_ithe component of v along direction i — e.g. v₁ = 3, v₂ = 4
Σ / ⋯shorthand for "add up every component in sequence" — nothing new, just notation
‖v‖"the norm of v" — its length, still just the Pythagorean theorem