Intuition The one core idea
A vector is a fixed arrow in space; a coordinate vector is just the shopping list of numbers you write once you pick a set of measuring-arrows (a basis). Change the measuring-arrows and the list changes, even though the arrow never moves — and the whole topic is the recipe for translating one list into another.
This page assumes you know nothing about the notation in the parent note. We build every symbol, one at a time, each on top of the last. Read top to bottom.
v (bold letter)
A vector is an arrow : it has a length and a direction. We write it with a bold letter, like v , b 1 , c 2 . The bold font is a promise: "this object is an arrow, not a plain number."
Look at the figure. The red arrow starts at the origin (the dot) and points somewhere. That is v . Notice: we have not written any numbers yet. The arrow exists before we measure it — that is the single most important idea on this page.
Intuition Why "before numbers" matters
The parent note keeps saying "the vector is invariant, only the numbers change." That sentence only makes sense once you accept the arrow is a real thing that lives in space independently of any numbers. The numbers are something we attach later.
A scalar is an ordinary number: 2 , − 1 , 2 1 , 3 . "Scalar" literally means "a thing that scales" — it stretches or shrinks an arrow. We use plain (non-bold) letters like c 1 , a , α for scalars.
Definition Column vector — the
[ ] box
When we want to record an arrow as numbers, we stack the numbers vertically inside a tall bracket:
[ 4 2 ] .
What the picture is: the top number is "how far right," the bottom number is "how far up." So [ 4 2 ] means 4 steps right, then 2 steps up — and that lands you exactly at the tip of the arrow.
The tall bracket is just a container . It holds a list of scalars in a fixed order. The order matters: [ 4 2 ] and [ 2 4 ] are different arrows.
Here is the subtle part the whole topic hinges on. "4 steps right, 2 steps up" secretly assumes what one step means . A step in which direction? By how much?
B = { b 1 , … , b n }
A basis is a chosen set of measuring-arrows. The curly script letter B (or C , E ) names the set. The curly braces { … } mean "the collection of." The arrows inside are labelled b 1 , b 2 , … — the small number ("subscript") just tells them apart.
A valid basis must:
span the space (its arrows can reach every point), and
be linearly independent (no arrow is redundant).
Look at the figure: the same target point can be reached with two different sets of measuring-arrows. Left uses the ordinary right/up arrows; right uses two slanted arrows. Same destination, different instructions.
Intuition Why we need a basis at all
Without agreed measuring-arrows, "the numbers of v " is a meaningless phrase. A basis is the ruler-system that turns an arrow into a list of numbers. Different basis → different list → this is the entire subject of change of basis. See Basis and dimension for why every basis of a space has the same count n .
Subscript b j : the little j is a name tag , not a power. b 1 , b 2 , b 3 are three different arrows.
n : a stand-in for "however many arrows the basis has." In the plane n = 2 ; in 3D space n = 3 . This count is the dimension (Basis and dimension ).
The dots … : shorthand for "keep going in the obvious pattern." { b 1 , … , b n } means "b 1 , b 2 , and so on up to b n ."
Definition Linear combination
To build an arrow from the basis, you scale each measuring-arrow by a scalar and add the results:
v = c 1 b 1 + c 2 b 2 + ⋯ + c n b n .
This is a linear combination : "linear" because we only stretch (scale) and add — no bending, no squaring.
Definition The summation symbol
∑
i = 1 ∑ n c i b i is a compact way to write that same sum. Read it: "add up c i b i as i runs from 1 to n ." The Σ is a capital Greek S, for S um. It is just abbreviation — nothing new.
The picture shows building v as c 1 copies of b 1 laid end-to-end, then c 2 copies of b 2 .
Definition Coordinate vector
[ v ] B
Once the scalars c 1 , … , c n in the linear combination are pinned down, we collect them into a column and give it a name:
[ v ] B = c 1 ⋮ c n .
Read the notation: the square brackets around v with subscript B mean "the numbers for the arrow v , measured with the ruler-system B ." The three dots ⋮ (vertical) mean "entries continue downward."
Intuition Why the list is unique — and why we care
Suppose two lists ( c 1 , … ) and ( c 1 ′ , … ) both built the same v . Subtract them: their difference is a linear combination of the b i that equals the zero arrow 0 . But independence says the only way to combine the b i into 0 is with all-zero scalars. So the two lists were equal all along. Uniqueness is what makes "the coordinates of v " a well-defined phrase instead of a guess.
B (capital, not bold)
When our space is R n (ordinary n -dimensional space) we can lay the basis arrows side by side as columns of a grid of numbers:
B = [ b 1 b 2 ⋯ b n ] .
A matrix is just a rectangle of scalars. Here each column is one measuring-arrow written out.
B does
Multiplying B by a coordinate list [ v ] B performs the linear combination for you: it scales column j by c j and adds. So B [ v ] B = v (in standard numbers). B is the machine that turns "B -numbers" into "ordinary right/up numbers."
If B turns B -numbers into ordinary numbers, we need a machine that goes backward .
Definition Inverse matrix
B − 1
B − 1 (read "B inverse") is the matrix that undoes B : applying B then B − 1 leaves everything unchanged. Formally B − 1 B = I , where I is the identity matrix (the "do-nothing" machine: 1 s down the diagonal, 0 s elsewhere).
B − 1 only exists when the columns of B are linearly independent — i.e. when they truly form a basis. See Invertible matrices .
Common mistake "Every square matrix has an inverse."
Why it feels right: small 2 × 2 examples usually invert fine. The fix: if two columns of B point the same way, information is lost and cannot be undone — B − 1 does not exist. That is exactly why the topic insists B be a basis (independent columns).
With these two machines, the parent note's punchline reads cleanly:
C ← B P = C − 1 B — apply B (to standard), then C − 1 (standard to C ).
The little arrow C ← B under P reads right-to-left : "input is B -numbers, output is C -numbers." Once you connect this to Similar matrices and diagonalization you'll see the same C − 1 ( ⋅ ) B pattern reappear.
Basis = chosen measuring arrows
Linear combination = scale and add
Coordinate list is unique
Matrix B = basis as columns
Change of basis P equals C inv B
Cover the right side and test yourself.
A bold letter v means an arrow (a vector), which exists before any numbers are chosen.
A plain letter like c 1 or α means a scalar — an ordinary number that scales an arrow.
The tall bracket [ 4 2 ] means a column of numbers, read top = right-steps, bottom = up-steps, in a fixed order.
A basis B = { b 1 , … , b n } is a chosen set of measuring-arrows that span the space and are linearly independent.
The subscript j in b j is a name tag telling the arrows apart, NOT a power.
i = 1 ∑ n c i b i meansadd up c i b i for i = 1 up to n — a compact linear combination.
The coordinate vector [ v ] B is the unique column of scalars c i with v = ∑ c i b i .
Why is that column unique? because the basis is linearly independent, so only one combination builds v .
The matrix B = [ b 1 ⋯ b n ] does what? multiplies a B -coordinate list to give the arrow in standard numbers.
B − 1 does what, and when does it exist?it undoes B (standard back to B -numbers); it exists only when the columns form a basis.
Read C ← B P aloud. takes B -numbers in, gives C -numbers out; equals C − 1 B .
Parent topic: Coordinate vectors — change of basis .