Foundations — Transpose — definition, properties
Before you can trust a single line of the parent note, you need to own every symbol it throws at you. This page builds them one at a time, from the very idea of a grid of numbers, up to the machinery of multiplication and inverses. Nothing here assumes you have seen matrices before.
1. What is a matrix? (the grid)
Look at the figure below. The grid on the left is a matrix. Reading across is a row; reading down is a column.

Why the topic needs this: the transpose is an operation on the whole grid at once. If you don't picture a matrix as a physical grid of pigeonholes, the flip has nothing to happen to. Later you'll meet Matrix Operations which act on these same grids.
2. Size: (how big is the grid?)
Why the topic needs this: the transpose swaps the size from to . The parent note says " is an matrix" — that swap of the two numbers is the whole geometric story, and you can only see it if you know what the two numbers mean.
3. Entries and the index (naming a single box)

Why the topic needs this: the entire definition of transpose is written in index language: That formula says nothing more than "to find the entry at address of the flipped grid, go to the swapped address of the original grid." If is a mystery to you, this formula is unreadable. Master the address and the formula becomes obvious.
Recall Why does swapping
and flip rows into columns? Because = (row, column). Swapping them turns "row , column " into "row , column " ::: so an entry that used to be along a row now lives along a column, and that is exactly a flip across the diagonal.
4. The main diagonal (the mirror line)

Why the topic needs this: this is what makes symmetric and skew-symmetric matrices possible.
- A symmetric matrix () is one where the mirror image looks identical to the original — nothing appears to move.
- A skew-symmetric matrix () is one where the mirror flips the sign. Since a diagonal entry mirrors to itself, we'd need , which forces — that is why the parent note insists the diagonal of a skew-symmetric matrix is all zeros. See Symmetric Matrices.
5. Square vs rectangular
Only square matrices have a main diagonal that runs corner to corner, so symmetry, Determinants, and Matrix Inverse all live in square-matrix land. A rectangular matrix like can still be transposed (it becomes ), but it can never equal its own transpose — the sizes wouldn't even match, let alone the entries.
Recall Can a
matrix be symmetric? No — symmetry needs , but is while is ; different sizes can't be equal ::: symmetry requires a square matrix.
6. Row and column vectors (the strips that get flipped)
Why the topic needs this: the whole "flip rows into columns" description is made of these single-strip moves. It also connects to Inner Product Spaces, where a row-vector-times-column-vector is how a dot product is written.
7. Matrix addition and scalar multiples (the easy operations)
Why the topic needs this: two of the four "SIRP" properties are about these.
- : adding happens entry-by-entry, and flipping happens address-by-address, so the two operations don't interfere — order doesn't matter.
- : a scalar touches every box equally, so the mirror can't tell the scaling was done before or after. The reason these are easy (no reversal!) is exactly because addition and scaling treat every box independently.
8. Matrix multiplication and the sum (the hard operation)
This is the one genuinely new machine, and the reversal rule depends entirely on it.

Why the topic needs this — the reversal explained from zero: In we ask for address , which is address of , i.e. . When we transpose each factor separately, every becomes an entry of at swapped address, and same for . The only way to line the shared index back up between the two matrices is to put first and second. That's not a trick — it's forced by which finger has to meet which. That is why and never . This machinery also drives Eigenvalues and Eigenvectors and Orthogonal Matrices.
9. The identity and the inverse
Why the topic needs this: the property is proved by transposing the equation and using the reversal rule plus the fact that (the identity is symmetric — its mirror image is itself). It's also the key to Orthogonal Matrices, where . Full details live in Matrix Inverse.
Recall Why is
? Every entry of satisfies (both are only when , else ) ::: so is symmetric — the mirror leaves it unchanged.
How the foundations feed the topic
Read it top-down: the plain grid gives you size and addresses; addresses plus the diagonal give you the transpose; the transpose plus each operation gives you each property; and everything converges on symmetric, inverse, and orthogonal matrices — the payoff of the parent topic Transpose — definition, properties.
Equipment checklist
Test yourself — say each answer out loud before revealing.