4.5.6 · D3Linear Algebra (Full)

Worked examples — Matrices — review, operations, types

1,832 words8 min readBack to topic

The scenario matrix

Think of every matrix exercise as landing in one of these boxes. If you can do one example from each box, nothing on an exam is new.

Cell Scenario What makes it tricky
A Compatible product , both nonzero getting the row·column pairing right
B Non-commutativity: compute and showing they differ
C Degenerate: multiplying by the zero matrix / identity the "do nothing" and "collapse" cases
D Zero divisors: with the surprising box that breaks number-intuition
E Transpose reversal order flips
F Symmetric + skew split the trick, zero diagonal
G Shape mismatch: when a product simply does not exist reading dimensions
H Limiting / repeated: powers of a matrix composition with itself
I Word problem: matrices modelling something real translating words to a grid
J Exam twist: orthogonal matrix, verify length-preserving check

Every symbol below is built from scratch. A matrix is just a rectangular grid of numbers; an entry sits in row , column (count rows top-to-bottom, columns left-to-right). The dot product of a row and a column means: multiply matching numbers and add them up — that single idea powers every product on this page. See it as sliding a horizontal strip onto a vertical strip:

Figure — Matrices — review, operations, types

Cell A — a compatible product


Cell B — order matters ()


Cell C — the degenerate multipliers: and


Cell D — zero divisors (the surprising box)


Cell E — transpose reversal


Cell F — symmetric + skew split


Cell G — the mismatch (product does not exist)

Figure — Matrices — review, operations, types

Cell H — powers (composition with itself)

Figure — Matrices — review, operations, types

Cell I — a real-world word problem


Cell J — exam twist: verify orthogonality

Figure — Matrices — review, operations, types

Recall Which cell was which?

Every product exists only when ::: the inner dimensions match (columns of first = rows of second). The box that breaks number-intuition ::: zero divisors, with (Cell D). Transpose of a product ::: reverses order: (Cell E). Skew part always has ::: a zero diagonal (Cell F). for the shear ::: (Cell H). Orthogonal test ::: (Cell J).

Connections