AHL 1.14 (HL)—Matrices

Syllabus
First assessment 2021
Objective
Level
HL

Matrices: dimensions decide which operations are possible

HL only

A matrix is a rectangular array of numbers. Its dimensions are rows × columns, and those dimensions are part of the meaning: they tell you whether an operation is defined.

Addition requires equal dimensions. For multiplication, the inner dimensions must match: an m×n matrix can multiply an n×p matrix, producing an m×p matrix. Each output entry is a row–column dot product, so matrix multiplication is generally not commutative.

For example, [[1,2],[3,4]] [5,6]^T = [17,39]^T because the first output is 1·5+2·6 and the second is 3·5+4·6. The result is 2×1, as the dimension rule predicts.

Do not multiply entries pairwise unless the question explicitly asks for a different operation. Check dimensions first, then keep the row–column order; reversing the factors may be impossible or may give a different matrix.

For A=\begin{pmatrix}a&b\c&d\end{pmatrix}, detA=adbc\det A=ad-bc and, when this is non-zero, A1=(adbc)1(db\-ca)A^{-1}=(ad-bc)^{-1}\begin{pmatrix}d&-b\-c&a\end{pmatrix}. Identity II satisfies AI=IA=AAI=IA=A and zero matrix OO satisfies A+O=AA+O=A. A system can be written Ax=bA\mathbf x=\mathbf b and solved as x=A1b\mathbf x=A^{-1}\mathbf b when AA is invertible; technology handles larger determinants/inverses, while hand work is limited to 2×22\times2.