4.5.6 · D1Linear Algebra (Full)

Foundations — Matrices — review, operations, types

1,832 words8 min readBack to topic

This page assumes nothing. If the parent note used a symbol, we build it here, from the picture up, in an order where each idea rests on the one before it.


0. The very first picture: a number line, then a plane

Before matrices, before vectors, there is a number. A number like is a position on a line: walk steps right from a marked zero.

Now glue two number lines at right angles — one horizontal, one vertical. That crossing gives the plane (graph paper). Every point needs two numbers to be pinned down: how far right, how far up.

Figure — Matrices — review, operations, types

Why the topic needs this: a matrix moves points and arrows on this plane. If you cannot picture the two axes, you cannot picture what a matrix does.


1. The vector — an arrow, not just a dot

Why a column and not a row? Purely a convention that makes the multiplication rule (Section 6) line up neatly — a matrix will eat a column on its right. Keep that in your pocket; it pays off later.

See the arrows in the figure below — one for , one for .

Figure — Matrices — review, operations, types

Why the topic needs this: the parent says a matrix "takes input vectors." Vectors are the food matrices eat. See Dot Product and Vectors to go deeper on arrows themselves.


2. The subscript — an address inside the grid

The parent writes . This scares people. It shouldn't.

The picture: a spreadsheet where you name a cell by "row 2, column 1" — that is .

Why the topic needs this: every rule — addition, multiplication, transpose — is stated by saying what happens to the entry at address . Without the address system there is no way to write the rules.


3. The letters and — how big is the grid?

The picture: rows are the horizontal shelves, columns are the vertical stacks.

Why the topic needs this: every operation has a shape rule. Addition needs equal shapes; multiplication needs inner shapes to match. You cannot check any rule without knowing and .


4. Sigma notation — "add up a patterned list"

The multiplication formula uses . Here is that symbol from zero.

The picture: a conveyor belt. Each position drops one item; the sum is the total at the end.

Why the topic needs this: the entry is a sum of products. Sigma is the only compact way to write "pair them up and add." It is the heartbeat of matrix multiplication.


5. The dot product — one number from two arrows

Multiplication of matrices is built from a smaller operation: the dot product of a row and a column.

Figure — Matrices — review, operations, types

Why the topic needs this: the parent says "each entry of is a dot product." Master the dot product here and matrix multiplication becomes just many dot products. See Dot Product and Vectors.


6. Putting it together — the product , one entry at a time

Now every symbol above is earned, so the parent's formula reads plainly.

Walk the pieces you now own:

  • — Section 2: the address inside , sweeping across row as changes.
  • — Section 2: the address inside , sweeping down column as changes.
  • — Section 4: add all those products.
  • The whole thing — Section 5: a dot product of one row and one column.
Figure — Matrices — review, operations, types

Why the topic needs this: this is the operation the parent derives from composition. Everything after (properties, transpose, special matrices) leans on knowing what is.


7. The transpose flip — turning rows into columns

The picture: hold the grid by its top-left corner and flip it like a page over the diagonal crease. Rows become columns.

Why the topic needs this: symmetric (), skew-symmetric (), and orthogonal () matrices are all defined using this flip. No flip, no vocabulary of special matrices.


8. The identity and the "do-nothing" idea

The picture: the transformation that leaves every arrow exactly where it was — the "stand still" rule. In arithmetic the number does this; among matrices plays that role.

Why the topic needs this: is the reference point for inverses (, see Determinant and Inverse of a Matrix) and for orthogonality (). It's the origin of the matrix world.


How these foundations feed the topic

Coordinate x y

Vector column of numbers

Address a i j row and column

Order m by n

Summation sign

Dot product

Matrix product A B

Transpose flip

Identity matrix

Matrices operations and types


Equipment checklist

Test yourself — reveal only after you answer aloud.

A point in the plane needs how many coordinates, and why?
Two — one per axis (right/left and up/down).
What does the arrow do from the origin?
Walks 2 right, then 1 down.
Read in words.
The entry in row 3, column 2.
What is the order (shape) of a column vector?
2 rows, 1 column.
Expand .
.
Why must two lists have equal length to take a dot product?
Each element needs a partner to multiply; a leftover element has none.
State in words.
Dot product of row of with column of .
What does transpose do to the entry ?
Sends it to position — swaps the subscripts.
What does the identity matrix do to any vector?
Nothing — leaves it exactly where it was.
Why does matrix multiplication require inner dimensions to match?
Because each entry is a row·column dot product, which needs equal lengths.

Connections