Skip to main content
ExamExplained
VIC · General Mathematics
General Mathematics study scene
§-Syllabus dot point
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.

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 the transpose is the inverse
  6. Cycle length and powers
  7. Left versus right multiplication
  8. 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 the transpose is the inverse

For an ordinary matrix the inverse requires a determinant calculation, but a permutation matrix is special: its inverse is simply its transpose. The reason is that the columns of a permutation matrix are the standard basis vectors in some order, so multiplying PP by PTP^{\mathsf{T}} pairs each row of PP with the matching column, producing the identity. Practically, this means you never run a full inverse routine for a permutation matrix; you just swap its rows and columns. Stating in a written answer that the inverse equals the transpose, and that this undoes the reordering, is exactly the reasoning markers look for.

Cycle length and powers

Repeatedly applying the same permutation eventually returns the list to its original order, and the number of applications needed is the permutation's cycle length. For the three-cycle abcaa \to b \to c \to a this length is 33, so P3=IP^3 = I; for a permutation built from a 22-cycle and a separate 33-cycle the list returns only after the lowest common multiple, here 66, applications. To find when an order recurs, track where each element goes and how the disjoint cycles fit together. Questions often ask after how many rounds a roster or rotation returns to its start, which is precisely this cycle-length calculation.

Left versus right multiplication

Whether a permutation reorders the rows or the columns of a matrix depends on which side you multiply. To reorder the entries of a column state matrix SS, the permutation goes on the left, PSPS, so each row of PP selects an entry of SS. Multiplying on the right, SPSP, instead reorders columns and is non-conformable for a column vector. Because VCE most often reorders a column state matrix, the standard form is PSPS. Getting the side right, and checking the matrices are conformable, avoids the most common setup error in these questions.

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.

VCAA 20234 marksA coach lists four players in order as S0=[ABCD]S_0 = \begin{bmatrix} A \\ B \\ C \\ D \end{bmatrix} and applies the permutation matrix P=[0010100000010100]P = \begin{bmatrix} 0&0&1&0 \\ 1&0&0&0 \\ 0&0&0&1 \\ 0&1&0&0 \end{bmatrix}. (a) Determine the reordered list PS0P S_0. (b) State the matrix that would reverse this reordering, and explain how it is obtained from PP.
Show worked answer →

Read each row of PP: the column holding the 11 tells which original entry lands in that position.

(a) Row 1 has its 11 in column 3, so the first entry is CC; row 2 column 1 gives AA; row 3 column 4 gives DD; row 4 column 2 gives BB. So PS0=[CADB]P S_0 = \begin{bmatrix} C \\ A \\ D \\ B \end{bmatrix}.

(b) The reversing matrix is P1=PTP^{-1} = P^{\mathsf{T}}, the transpose of PP, obtained by swapping rows and columns: PT=[0100000110000010]P^{\mathsf{T}} = \begin{bmatrix} 0&1&0&0 \\ 0&0&0&1 \\ 1&0&0&0 \\ 0&0&1&0 \end{bmatrix}. For any permutation matrix the inverse equals the transpose, so PT(PS0)=S0P^{\mathsf{T}} (P S_0) = S_0.

Markers award two marks for the reordered list, one for the transpose, one for the explanation that the inverse equals the transpose.

ExamExplained