Intuition The one core idea
A vector is a list of numbers that doubles as a geometric arrow — and once you can add and stretch those arrows, plain arithmetic becomes geometry. Everything on the parent page (length, angle, perpendicularity) is squeezed out of that single dual meaning: number-list ↔ arrow.
This page assumes nothing . Every squiggle, letter, and picture the parent note used is built here from the ground up, in an order where each brick rests on the one before it.
Before arrows, we need the ground they live on.
Definition Real number and the symbol
R
A real number is any point you can mark on an endless ruler: whole numbers, fractions, negatives, 2 , π — anything with a position on a continuous line. The blackboard-bold letter R is just shorthand for "the whole set of real numbers" — the entire ruler at once.
R is a horizontal line stretching forever both ways, with 0 in the middle, positives to the right, negatives to the left. When you see "v 1 ∈ R " read it as: "v 1 is some point sitting on that ruler ." The little "∈ " is the word "is an element of / lives inside."
We need R because every coordinate of every vector is one of these ruler-points.
One ruler locates you on a line. To locate yourself on a map you need two rulers (east–west, north–south). To locate a point in a room you need three (add up–down).
R n
R n (say "R-n") is the set of all lists of n real numbers, one number per ruler/axis. The small raised n is not a power — it counts how many independent directions you have.
R 1 = the line, R 2 = the flat plane, R 3 = space you can walk in, R n = the same idea with n perpendicular rulers (we just can't draw past 3).
R n means R raised to the power n ."
Why it feels right: the raised number looks like an exponent. The fix: here the superscript is a counter of axes , not multiplication. R 3 is "three rulers side by side," not "R × R × R multiplied." (It is a product of copies, but nothing is being cubed.)
Definition Vector, component, and the subscript
i
A vector v is one specific list from R n . We print it bold (v ) so you never confuse the whole arrow with a single plain number.
v = ( v 1 , v 2 , … , v n ) .
Each v i is a component : the amount of movement along ruler number i .
The little subscript i is a pointer/address : "v 2 " means "the 2 nd entry." The … (ellipsis) just means "keep going the obvious way up to entry n ."
Intuition Two pictures for one list — the whole magic
The exact same list ( 3 , 4 ) can be read two ways:
a point — an address: "the dot at east-3, north-4";
an arrow — a journey: "start at the origin, walk 3 east then 4 north, and draw a straight arrow to where you land."
The arrow picture is the one that lets us add and stretch ; the point picture is the one that lets us locate . Keep both in mind at once.
0
0 = ( 0 , 0 , … , 0 ) is the origin — the "you are here / start" point where all arrows are rooted. Bold zero = the zero vector (a whole list of zeros), not the plain number 0 .
Column notation. The parent writes vectors stacked vertically:
v = v 1 ⋮ v n .
This is the same list , just written top-to-bottom instead of left-to-right. The tall square brackets are a container ; the vertical dots ⋮ again mean "continue the pattern." Column form is pure convention — it will matter later when matrices multiply vectors, but for now ( v 1 , … , v n ) and the column are identical.
Everything the parent builds runs on exactly two moves.
Definition The word "scalar"
A scalar is just an ordinary single real number (a member of R ) used to scale — stretch or shrink — a vector. We call it "scalar" (not "vector") precisely to flag: "this one number is not an arrow, it's a stretch-factor." We usually name scalars with plain letters like c .
u + v and scaling c v
u + v = ( u 1 + v 1 , … , u n + v n ) , c v = ( c v 1 , … , c v n ) .
Both act component-wise : do the operation one ruler at a time.
Intuition Why component-wise, and what each looks like
Moving 3 units east never changes how far north you are — the rulers are independent. So the only honest rule is to combine matching entries and leave the rest alone.
Addition = tip-to-tail: slide v 's tail onto u 's tip; the arrow from the start to the final tip is u + v .
Scaling by c : stretches the arrow to ∣ c ∣ times its length. If c < 0 it also flips the arrow to point the opposite way. If c = 0 it collapses to the origin 0 .
Definition The absolute value bars
∣ c ∣
∣ c ∣ ("the size / magnitude of c ") strips the sign: ∣ − 3 ∣ = 3 , ∣3∣ = 3 . Picture: the distance of c from 0 on the ruler, always non-negative. We need it because a length can never be negative even when the stretch-factor is.
To ask "how long is this arrow?" the parent invokes Pythagoras. Two symbols show up.
and squaring v i 2
v i 2 means v i × v i (the number times itself). Picture: the area of a square whose side is v i . Squaring also kills signs — ( − 4 ) 2 = 16 — which is exactly why lengths built from squares are always positive.
x asks the reverse question: "which non-negative number, squared, gives x ?" It undoes squaring. 25 = 5 because 5 2 = 25 .
Definition The double bars
∥ v ∥ — the norm
∥ v ∥ (read "norm of v " or "length of v ") is a single non-negative number : the straight-line length of the arrow. Double bars (not single) signal "length of a whole vector ," distinct from ∣ c ∣ for a plain number.
∥ v ∥ = v 1 2 + v 2 2 + ⋯ + v n 2 .
Intuition Why this exact formula (and why square-root is the right tool)
In the plane, the arrow ( v 1 , v 2 ) is the hypotenuse of a right triangle with legs v 1 and v 2 . Pythagoras says leg 2 + leg 2 = hyp 2 , so the squared length is v 1 2 + v 2 2 . But we want length, not squared length — so we apply , the exact tool that undoes the squaring. That's why the root sits on the outside.
Zero case: ∥ 0 ∥ = 0 + ⋯ + 0 = 0 — the only vector with length 0 .
Definition The summation sign
∑
i = 1 ∑ n v i 2 is compact shorthand for "add up v i 2 as i runs 1 , 2 , … , n ." The ∑ (Greek capital sigma, "S for Sum") is a loop instruction : the "i = 1 " below says where to start, the "n " on top says where to stop. So ∥ v ∥ = ∑ i = 1 n v i 2 says the same thing as the long formula.
Definition Unit vector and the hat
v ^
A unit vector has length exactly 1 — a pure direction with no size. To build one from any nonzero v , normalize : divide every component by the length,
v ^ = ∥ v ∥ v .
The little hat " ^ " is a costume that means "this arrow has been shrunk to length 1." Dividing by ∥ v ∥ can't rotate the arrow — every component shrinks by the same factor — so the direction survives while the length becomes 1 .
The parent's climax turns arithmetic into angles. Four new symbols.
⋅ (dot product)
u ⋅ v = u 1 v 1 + u 2 v 2 + ⋯ + u n v n .
Multiply matching components, then add them all into one plain number (a scalar). The raised dot "⋅ " is a special multiply between two vectors that returns not a vector but a single alignment score.
θ and cosine cos
θ (Greek "theta") names the angle between two arrows sharing a tail — the amount of turn from one to the other.
cos θ (cosine) is a dial reading between − 1 and + 1 that reports how aligned two directions are: cos 0 ∘ = 1 (same way), cos 9 0 ∘ = 0 (right angle), cos 18 0 ∘ = − 1 (opposite way).
Definition The perpendicular symbol
⊥ and the "iff" arrow ⟺
u ⊥ v reads "u is perpendicular (at a right angle) to v ."
⟺ means "if and only if " — a two-way street: the left is true exactly when the right is.
u ⊥ v ⟺ u ⋅ v = 0.
Why zero? A right angle is θ = 9 0 ∘ , and cos 9 0 ∘ = 0 ; that zeros out the whole right side of the bridge, so the dot product must be 0 too. This is the switch a computer flips to detect right angles.
Recall Quick self-check: which symbol returns what?
Does ∥ v ∥ give a vector or a number? ::: A single non-negative number (a length).
Does u ⋅ v give a vector or a number? ::: A single number (scalar) — never an arrow.
Does c v give a vector or a number? ::: A vector (a re-stretched arrow).
What is v ⋅ v ? ::: ∥ v ∥ 2 — the squared length.
Vector v = list of components
Point picture and Arrow picture
Scalar multiply stretch and flip
Linear Combinations and Span
Norm length via Pythagoras
Unit vectors and normalize
Perpendicular test dot equals 0
This map is the parent note in miniature: real numbers build R n , which houses vectors, whose dual picture powers the two engines, from which length and the dot product — and finally angle and perpendicularity — flow. Deeper branches live in Linear Combinations and Span , Dot Product and Orthogonality , and Norms and Distance in Rn , and the whole structure is formalized in Vector Spaces — Axioms .
Self-test: can you say each in one plain sentence before revealing?
R The set of all real numbers — every point on an endless ruler.
R n All lists of n real numbers; n independent perpendicular rulers/axes (superscript counts axes, not a power).
∈ "is an element of / lives inside," e.g. v i ∈ R .
v (bold)A vector — one list from R n , read as both a point and an arrow from the origin.
v i and subscript i The i -th component; the subscript is an address pointing to entry number i .
0 The origin / zero vector, all components zero — where arrows are rooted.
scalar c A single real number used to stretch/shrink a vector.
component-wise Do the operation one matching entry at a time.
c v Scaling: stretch length by ∣ c ∣ , flip if c < 0 , collapse to 0 if c = 0 .
∣ c ∣ Absolute value — distance of c from 0 , always non-negative.
v i 2 and Squaring (area of a side-v i square, kills sign) and square root (its undo).
∥ v ∥ The norm — the arrow's straight-line length, a non-negative number.
∑ i = 1 n Summation loop: add the terms as i runs from 1 to n .
v ^ Unit vector — v shrunk to length 1 , same direction, via v /∥ v ∥ .
u ⋅ v Dot product — sum of products of matching components; a single scalar.
θ The angle between two arrows sharing a tail.
cos θ Alignment dial from − 1 to + 1 : 1 same way, 0 right angle, − 1 opposite.
⊥ Perpendicular (right angle) — holds exactly when the dot product is 0 .
⟺ "If and only if" — both sides true together, a two-way implication.