2.6.1 · D5Matrices & Determinants — Introduction
Question bank — Matrix definition — rows, columns, order, elements
Before we start, a two-line reminder of the vocabulary every question leans on, so no symbol is used unfamiliar:
True or false — justify
A matrix and a matrix can never be equal, no matter what numbers they hold
True — equality first demands identical order, and are different shapes, so the comparison fails before we even look at the numbers.
Order obeys the same rule as ordinary multiplication, so describes the same shape as
False — the in "order" is a label, not multiplication; is 4 rows tall, is 5 rows tall, so they are genuinely different grids.
Every square matrix is also a rectangular arrangement of numbers
True — a square is just the special rectangle where width equals height; "rectangular array" is the umbrella that square matrices sit under.
A matrix with 12 elements must have order
False — total elements has several factorisations (), so the count alone does not fix the shape.
The element always exists in a matrix
False — row index 3 exceeds the 2 available rows, so points to nothing; an index is only valid when and .
A matrix is just a plain number written in brackets
True as an object, but it is treated as a matrix of order ; the brackets matter because it can now take part in matrix operations, unlike a loose scalar.
In the element , swapping to generally points at a different entry
True — unless (a diagonal element), reading row--column- versus row--column- lands on two different grid cells; this swap is exactly what the transpose does to the whole matrix.
Every row matrix is also a column matrix
False — a row matrix is (one horizontal strip) and a column matrix is (one vertical strip); they coincide only in the single case .
Spot the error
" means the entry in column 2, row 3." Find the mistake
Two errors: the convention is row first, column second, so is row 2, column 3 — the reader reversed the roles of both indices.
A student writes the order of as . What went wrong?
They counted the four numbers as "rows". It is one horizontal row of three columns, so the order is ; counting entries is not counting rows.
"Since indices start at zero, the top-left entry is ." Correct this
Standard mathematical notation is 1-based, so the top-left entry is ; the zero-start habit comes from programming arrays, not from matrix algebra.
Someone claims is square because it "has 6 elements like a ." Where is the flaw?
"Square" is about shape (), not element count; this matrix is with , so it is rectangular regardless of how many numbers it holds.
To build with , a student computes . Is the value right, and is the reasoning safe?
The value is correct here, but only because is symmetric; the reasoning is unsafe — they used instead of , which would give a wrong answer for any non-symmetric formula like .
"A matrix and a matrix are automatically equal since they share order." Fix it
Equal order is necessary but not sufficient; the matrices must also match element-by-element, for every , before we can call them equal.
Why questions
Why do we need two subscripts on instead of one running number?
A grid is two-dimensional, so one coordinate cannot pin a cell; we need (which row, which column) — two numbers — to locate any entry unambiguously.
Why is the convention "row first, column second" rather than the other way?
It mirrors how we write the order (rows before columns) and how the general form is laid out, keeping one consistent left-to-right, top-to-bottom reading rule everywhere.
Why does the order of a matrix matter before we ever add or multiply?
Order is the "shape passport": addition needs identical orders and multiplication needs the inner dimensions to match, so shape decides in advance which operations are even legal.
Why is a column vector, not a row vector, the conventional way to write a point in linear algebra?
Because transformations are applied as matrix-times-column, ; writing the point as a column makes the multiplication line up dimensionally on the right.
Why can a matrix hold expressions (like or ) and still count as a matrix?
The definition asks only for a rectangular arrangement of numbers or expressions; the grid structure is what makes it a matrix, not whether each cell is already simplified to a bare number.
Why do we bother packing a system of equations into one matrix at all?
A single matrix lets us apply one set of systematic rules (determinant, row operations, solving systems) to all equations at once, instead of juggling each equation separately.
Edge cases
Can a matrix have zero rows or zero columns?
In standard school-level treatment, no — a matrix must have at least one row and one column (); an "empty" grid holds no elements and is not used here.
What is the smallest possible matrix, and what is its order?
A single number in brackets, order ; it is simultaneously the smallest square, row, and column matrix.
If for every and , is it still a valid matrix?
Yes — the zero matrix is perfectly valid; "matrix" describes the arrangement, and there is no rule forbidding the entries from all being zero (see types of matrices).
For an square matrix, how many elements satisfy ?
Exactly — these are the diagonal elements running from top-left to bottom-right.
In a row matrix, what does the first index ever equal?
Always , since there is only one row; only the column index varies from to , which is why row vectors are often written with a single subscript in practice.
When is and guaranteed to be the same cell regardless of the matrix's values?
Only when (a diagonal position); off the diagonal they are different cells whose values may or may not coincide.
Does adding more elements to a row change the matrix's order?
Yes — widening a row increases the column count , so a becomes ; you cannot change element counts without changing the order.