Skip to main content
VICGeneral MathematicsSyllabus dot point

How does a permutation matrix rearrange the rows of a state matrix, and how are binary matrices used to encode and reorder information?

Recognise and use a permutation matrix as a binary matrix with exactly one 1 in each row and column, apply it to reorder the entries of a state matrix, and identify the matrix that reverses or repeats the reordering

A focused answer to the VCE General Mathematics Unit 4 Matrices key-knowledge point on permutation matrices. The defining one-per-row-and-column structure, using a permutation matrix to reorder a state matrix, the inverse that reverses it, and powers that repeat the reordering.

Generated by Claude Opus 4.76 min answer

Reviewed by: AI editorial process; not yet individually human-reviewed

Have a quick question? Jump to the Q&A page

Jump to a section
  1. What this dot point is asking
  2. How a permutation matrix reorders
  3. Powers repeat the shuffle
  4. Binary matrices more generally
  5. Why this matters for the exams

What this dot point is asking

VCAA wants you to recognise and use a permutation matrix: a binary matrix with exactly one 11 in each row and each column. Multiplying it by a state matrix shuffles the entries into a new order without changing their values. You apply a permutation to reorder a list, find the matrix that reverses the reordering, and use powers to repeat it. This is a clean application of matrix multiplication used for rotations, rosters and rankings.

How a permutation matrix reorders

Each row of the permutation matrix picks out exactly one entry of the state matrix to place in that position. Consider

P=[010001100],S=[abc].P = \begin{bmatrix} 0 & 1 & 0 \\ 0 & 0 & 1 \\ 1 & 0 & 0 \end{bmatrix}, \qquad S = \begin{bmatrix} a \\ b \\ c \end{bmatrix}.

The first row of PP has its 11 in column 2, so the first entry of the result is bb. The second row's 11 is in column 3, giving cc. The third row's 11 is in column 1, giving aa.

Powers repeat the shuffle

Applying the same permutation again multiplies by PP once more. Because a permutation just cycles the entries, repeating it enough times returns to the start: here P3=IP^3 = I, so after three applications the list a,b,ca, b, c is back in its original order.

Binary matrices more generally

Permutation matrices are a special case of binary matrices (entries only 00 or 11), which also appear as communication, dominance and adjacency matrices. What sets a permutation matrix apart is the strict one-per-row-and-column structure that makes it reorder rather than count.

Why this matters for the exams

Permutation matrix questions test whether you understand multiplication as a reordering operation and whether you can reverse it with the transpose. Markers reward the correct reordered state, the transpose as the inverse, and recognising the cycle length that restores the original. The topic reinforces matrix multiplication and the special structure of binary matrices used across the module.

Exam-style practice questions

Practice questions written in the style of VCAA exam questions on this dot point, with worked answer explainers. The year tag is the paper they imitate, not the source.

2025 VCAA1 marksConsider the matrix G with rows [0, 1, 0], [1, 0, 1] and [0, 0, 0]. Which one of the following correctly describes matrix G? A. a binary matrix B. a permutation matrix C. an identity matrix D. a diagonal matrix
Show worked answer β†’

Every entry of G is either 0 or 1, which is exactly the definition of a binary matrix, so option A is correct.

It is not a permutation matrix: a permutation matrix needs exactly one 1 in each row and each column, but the third row of G is all zeros, so option B is wrong.

It is not the identity matrix (the leading diagonal is not all 1s) and not a diagonal matrix (it has non-zero entries off the leading diagonal), so the answer is A.