Why does the order of subscripts in a_ij matter, and what error arises if a student consistently reads j as the row index and i as the column index?
Think about your answer, then reveal below.
Model answer: The order matters because a_ij and a_ji refer to different entries — unless the matrix is symmetric, these are generally different values. If a student swaps the convention, they are effectively reading the transpose of the matrix instead of the matrix itself. Every computation that depends on specific entries — matrix multiplication, solving systems, checking symmetry — will produce wrong results.
The subscript order a_ij (row i, column j) is a bookkeeping convention, but it is the universal convention, and violating it silently introduces errors that can be hard to trace. When two matrices are multiplied, the (i,j) entry of the product is the dot product of row i of the first matrix and column j of the second — if you have the indices swapped, you will select the wrong rows and columns. Fluency with this notation is genuinely foundational to everything that follows in linear algebra.