Intuition The one core idea
A linear transformation is a machine that turns arrows into arrows without bending straight lines or spacing. Once you agree on a small set of "ruler arrows" (a basis) for the input and output, you only need to record where each ruler arrow lands — that little table of numbers is the matrix, and it lets you predict where every other arrow goes.
This page assumes you have seen none of the notation in the parent note. We build every symbol from the ground up, in an order where each one leans only on the ones before it. Read top to bottom.
A vector is an arrow with a length and a direction. In the flat plane we describe it by two numbers: how far right, and how far up. We write v = ( x , y ) , and the arrow starts at the origin (the corner point ( 0 , 0 ) ) and points to ( x , y ) .
The picture below shows one vector and the two numbers that name it. Look at the burnt-orange arrow: it goes 3 units right and 2 units up, so we call it ( 3 , 2 ) .
Intuition Why numbers, not just pictures?
A picture of an arrow is nice, but you cannot compute with a picture. Attaching two numbers lets us add, scale, and eventually feed arrows through machines using arithmetic. The whole topic is a translation from pictures of arrows into columns of numbers .
Everything linear is built from exactly two operations.
Definition Addition and scalar multiplication
Add two vectors: put them tip-to-tail; the result is the arrow from the very start to the very end. In numbers, add matching slots: ( a , b ) + ( c , d ) = ( a + c , b + d ) .
Scale a vector by a number c (called a scalar , just an ordinary number): stretch or shrink the arrow. In numbers, c ⋅ ( a , b ) = ( c a , c b ) . If c is negative the arrow flips to point backwards.
Definition Linear combination
A linear combination of vectors v 1 , v 2 , … is any result of scaling each one and adding: c 1 v 1 + c 2 v 2 + ⋯ . The picture is: walk c 1 copies of the first arrow, then c 2 copies of the second, and so on. Where you end up is the combination.
Why we care: the parent note's central claim — "a basis pins down T " — is really the claim that every vector is a linear combination of a few chosen arrows . So this idea must come first.
A basis of a space is a smallest set of arrows such that every vector in the space is a linear combination of them in exactly one way. The most familiar basis of the plane is e 1 = ( 1 , 0 ) (one step right) and e 2 = ( 0 , 1 ) (one step up).
The figure shows how the arrow ( 3 , 2 ) is built from these ruler arrows: three of e 1 then two of e 2 .
Intuition Why "exactly one way" is the magic word
If a vector could be built from the basis in two different ways, its "coordinates" would be ambiguous and no bookkeeping table could work. Uniqueness is what makes the whole matrix idea possible. This uniqueness is exactly what the parent note relies on when it writes "for unique coordinates x i ."
A basis need not be e 1 , e 2 . In parent Example 3 the basis is {( 1 , 1 ) , ( 1 , − 1 )} — two slanted ruler arrows. Same plane, different rulers. See Coordinate vectors and bases for the full story.
Definition Coordinate vector
[ v ] B
Fix a basis B = { b 1 , … , b n } . Since v = x 1 b 1 + ⋯ + x n b n in exactly one way, the recipe numbers x 1 , … , x n are the coordinates of v in B . We stack them in a column and write
[ v ] B = x 1 ⋮ x n .
The little subscript B means "measured with the ruler arrows of B ."
Worked example Same arrow, two coordinate columns
The arrow ( 3 , 2 ) measured in the standard basis has [ v ] e = ( 2 3 ) (three rights, two ups).
Measured in B ′ = {( 1 , 1 ) , ( 1 , − 1 )} , solve ( 3 , 2 ) = a ( 1 , 1 ) + b ( 1 , − 1 ) : adding the equations a = 2.5 , subtracting gives b = 0.5 . So [ v ] B ′ = ( 0.5 2.5 ) .
Same arrow, different numbers — because the ruler changed.
Common mistake Thinking a vector
is its coordinates
Why it feels right: we almost always use the standard ruler, where ( 3 , 2 ) and its coordinates look identical.
The fix: coordinates only exist relative to a basis . The subscript B is not decoration — dropping it is like giving a distance without saying miles or kilometres. This is the exact trap in the parent note's second "Common Mistake."
A vector space is any collection of things you can add and scale following the usual rules. Arrows in the plane form one. So do polynomials like 4 + 5 x + 6 x 2 — you can add them and multiply them by numbers. The parent's derivative example lives in the polynomial space, which is why we mention it.
The dimension of a space is the number of arrows in any basis of it — the count of independent "directions." The plane has dimension 2 . Polynomials of degree at most 2 (written P 2 ) have basis { 1 , x , x 2 } , so dimension 3 .
We write V for the input space and W for the output space. Letters n = dim V and m = dim W record their dimensions. This is where the matrix's shape "m rows by n columns" comes from.
T : V → W
T is a machine (a function) that eats a vector from space V and produces a vector in space W . The notation T : V → W reads "T takes inputs from V and gives outputs in W ." We write T ( v ) for "what the machine does to v ."
T is linear if it respects the only two moves from Section 2:
T ( u + v ) = T ( u ) + T ( v ) , T ( c v ) = c T ( v ) .
Picture: the grid of straight, evenly-spaced lines stays straight and evenly-spaced after the machine runs — no bending, no curving. Only stretching, rotating, shearing, or flipping.
The figure contrasts a linear machine (a 90° rotation) with a forbidden bendy one.
Intuition Why linearity is the whole game
Because T commutes with adding and scaling, applying T to a linear combination equals the same combination of the applied pieces:
T ( x 1 b 1 + ⋯ + x n b n ) = x 1 T ( b 1 ) + ⋯ + x n T ( b n ) .
So knowing T on the n ruler arrows tells you T on everything . That finite data is what the matrix will store.
A matrix is a rectangular grid of numbers. We use two bases: B for the input space V and C for the output space W . The notation [ T ] C B reads "the matrix of T , inputs measured in B , outputs measured in C ." Its j -th column is the coordinate column [ T ( b j ) ] C — where the j -th ruler arrow lands, written in the output ruler.
Definition Matrix times column
A [ v ] B
To multiply a matrix A by a coordinate column, take each row of A , pair its entries with the column's entries, multiply pairs and add. This is called a dot product of that row with the column. The result is a new column — the output coordinates.
Deeper study of these pieces lives in Composition of linear maps , Rank and nullity , Kernel and image , Eigenvalues and diagonalization , and Change of basis . Return to the parent Matrix representation of linear transformations once the symbols below feel automatic.
Add tip to tail and scale
Coordinates and bracket v in B
Vector space V and W dimension
Matrix table T in C from B
Output coords = matrix times input coords
Test yourself. Each line: cover the answer, recall it, then reveal.
What two numbers name a plane vector, and what do they mean? The horizontal step and vertical step from the origin to the arrow's tip, written ( x , y ) .
What are the only two operations everything linear is built from? Adding vectors (tip-to-tail) and scaling a vector by a number.
What is a linear combination of v 1 , v 2 ? Any c 1 v 1 + c 2 v 2 — scale each, then add.
What makes a set of arrows a basis? Every vector is a linear combination of them in exactly one way.
Why does "exactly one way" matter? It makes coordinates unambiguous, which is what lets a single matrix work.
What does [ v ] B mean? The column of coordinates of v measured against the ruler arrows of basis B .
Is a vector the same as its coordinates? No — coordinates depend on which basis you chose; drop the subscript and the meaning is ambiguous.
What is the dimension of a space? The number of arrows in any basis of it.
What does T : V → W mean? T is a machine sending inputs from space V to outputs in space W .
What does it mean for T to be linear? T ( u + v ) = T ( u ) + T ( v ) and T ( c v ) = c T ( v ) — the even grid stays straight and evenly spaced.
Why do the values of T on a basis determine T everywhere? Every vector is a unique combination of basis vectors, and linearity carries T through that combination.
What sits in the j -th column of [ T ] C B ? The coordinates of T ( b j ) , the image of the j -th input ruler arrow, written in the output basis C .
For T : V → W with dim V = n , dim W = m , what is the matrix size? m rows by n columns.
State the fundamental relationship. [ T ( v ) ] C = [ T ] C B [ v ] B .