Visual walkthrough — Types of matrices — row, column, square, diagonal, identity, zero, symmetric, skew-symmetric
The parent note gave us the cast of characters — row, column, square, diagonal, identity, zero, symmetric, skew-symmetric. This page proves the single most beautiful fact that ties two of them together:
Any square matrix can be broken into a symmetric part plus a skew-symmetric part — and only one way.
We build it from nothing. If you have never seen a matrix, a transpose, or the word "symmetric", start at Step 1 and never look anything up.
Step 1 — What a matrix is, and what "flipping" it means
WHAT. A matrix is just a rectangular grid of numbers. We label each number by which row and which column it sits in. The number in row , column is written .
WHY. Before we can flip or add grids, we need a name for each cell. The address is that name — the first index is the row (counting down), the second is the column (counting across).
PICTURE. Look at the board below. The white cell in row 1, column 2 is ; its mirror across the diagonal (row 2, column 1) is . These two "partner" cells are the heart of everything that follows.

Step 2 — The transpose: reflecting the grid across its diagonal
WHAT. The transpose of , written , is the grid you get by swapping every cell with . In words: rows become columns.
Read the equation term by term: the cell at address inside is fetched from address inside the original . The two indices trade places.
WHY. We need a machine that "mirrors" a matrix so we can ask "does the mirror equal the original?" That single question defines symmetry. The mirror line is the principal diagonal — diagonal cells () never move, because .
PICTURE. The blue arrow shows leaping across the diagonal to become the new , and the pink arrow shows the reverse. Diagonal cells stay put (yellow).

Step 3 — Two special mirrors: symmetric and skew-symmetric
WHAT. Ask the mirror question and there are exactly two "perfect" answers:
- → the mirror is identical. Call symmetric. Cell-wise: .
- → the mirror is the exact negative. Call skew-symmetric. Cell-wise: .
WHY. These are the two building blocks we will split every matrix into. Symmetric = partners are equal; skew = partners are opposite.
There is a forced consequence for skew. Put (a diagonal cell): Term by term: a diagonal cell must equal its own negative; the only number equal to its own negative is . So a skew-symmetric matrix always has a zero diagonal.
PICTURE. Left board: equal partners (both ). Right board: opposite partners ( and ) with a forced-zero diagonal.

Step 4 — The trick: build a symmetric matrix out of any matrix
WHAT. Take any square . Form
Claim: is symmetric. Check by transposing it, using two facts — transpose is linear () and self-undoing (): Every symbol: we transposed the sum, split it, undid the double-transpose on the second term, and landed back on . Since , it is symmetric. ✓
WHY. Adding a matrix to its own mirror forces partners to become equal — each off-diagonal pair becomes on both sides. The is bookkeeping so nothing gets doubled.
PICTURE. Watch the partners and average into the same value on both sides of the diagonal.

Step 5 — Build a skew-symmetric matrix out of the same
WHAT. Now subtract the mirror:
Claim: is skew-symmetric. Transpose it: Term by term: transpose the difference, undo the double-transpose, factor out the minus sign, recognise inside. Since , it is skew. ✓ And its diagonal is automatically zero, because .
WHY. Subtracting a matrix from its mirror forces partners to become opposites: each pair becomes on one side and (its negative) on the other.
PICTURE. The partners split into and ; the diagonal collapses to .

Step 6 — They add back to (the decomposition)
WHAT. Add the two pieces: Every symbol earns its place: the from cancels the from , leaving , which the halves turn into a single .
WHY. This is the whole point: any square matrix is a symmetric part plus a skew-symmetric part.
PICTURE. The board and the board stack back into the original board.

Step 7 — Edge cases: does it ever break?
We must never leave a scenario unshown.
- already symmetric (): then , the zero matrix. The skew part vanishes — as it should, there is nothing to fix.
- already skew (): then . The symmetric part vanishes.
- diagonal (a special symmetric matrix): again ; diagonal matrices are their own symmetric part.
- (zero matrix): both and . Trivially true.
- not square: has a different shape, so can't even be formed. The decomposition needs a square matrix — this is why Step 1 insisted on square.
PICTURE. The four collapse-cases side by side, plus the "shape mismatch" that forbids non-square inputs.

The one-picture summary
One diagram, the whole derivation: mirror to get ; average them for the symmetric half ; take half their difference for the skew half ; the two halves add back to .

Recall Feynman retelling — say it in plain words
Picture a grid of numbers and its mirror image reflected across the top-left-to-bottom-right diagonal. If you average the grid with its mirror, matching partners become equal — that's a symmetric grid . If instead you take half the difference, partners become exact opposites and the diagonal is forced to zero — that's a skew-symmetric grid . The clever bit: when you add and the mirror-copies cancel and you get your original grid back, perfectly. So every square grid is secretly a symmetric part plus a skew part, and there's only one way to do it. If the grid was already symmetric, the skew part is all zeros; if it was already skew, the symmetric part is all zeros; and if the grid isn't square, you can't even line it up with its mirror, so the trick doesn't apply.
Recall
Formula for the symmetric part of ::: Formula for the skew-symmetric part ::: Why is a skew matrix's diagonal always zero ::: What does the transpose do to cell ::: sends it to address , i.e. When does the skew part vanish ::: when is already symmetric ()