STEM LAB · Linear Algebra Series Module 0 · Lesson 3 of 3
Module 0.3

Linear Transformations — Matrices as Moving Space

A matrix isn't a static block of numbers. It's an instruction for moving every point in space at once — and it's completely determined by where it sends two arrows.

1

Intuition First

Instead of picturing a matrix as a grid of numbers, picture it as an action: something that grabs every point in space and moves it somewhere new — stretching, rotating, or shearing the whole plane at once.

A transformation is called linear if it plays fair: the origin never moves, straight lines stay straight, and evenly spaced grid lines stay evenly spaced everywhere. Once you know where a linear transformation sends just the two basis arrows, i = (1,0) and j = (0,1), you already know where it sends every other point — because every point is some recipe of i and j, the linear combination idea from the last lesson.

2

Start With a Number You Can Check by Hand

Take the matrix that sends i to (2, 0) and j to (1, 2). Apply it to the point (1, 1):

new x = 2·1 + 1·1= 3
new y = 0·1 + 2·1= 2
(1,1) →(3, 2)

Each new coordinate is just a linear combination of the old ones. The sliders below start on this exact matrix.

3

Try It — Warp the Grid

Move the sliders to change the matrix. Watch the grid stretch and shear, and watch where the test point (1, 1) lands.

◆ LINEAR TRANSFORMATION — LIVE drag any slider
a2.0
b1.0
c0.0
d2.0
i lands at
(2.0, 0.0)
j lands at
(1.0, 2.0)
(1,1) lands at
(3.0, 2.0)
4

Formal Definition

A transformation T is linear if it satisfies two properties for all vectors u, v and scalars c:

Every linear transformation of the plane can be written as multiplication by a matrix, whose columns are exactly where the basis vectors land:

a, dhow much i and j stretch along their own direction
b, chow much i and j lean into each other's direction — the shear
T(î)where the transformation sends the first basis vector — always the matrix's first column
T(ĵ)where it sends the second basis vector — always the second column