A matrix is a rectangular array of numbers arranged in rows and columns.
Example (2×3 matrix – 2 rows, 3 columns):
\[ A = \begin{pmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \end{pmatrix} \]We say this is a 2×3 matrix (rows × columns).
Matrices are used to represent:
Some common types:
Example 2×2 identity:
\[ I_2 = \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix} \]Same rules as vectors:
Example:
\[ 2 \times \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix} = \begin{pmatrix} 2 & 4 \\ 6 & 8 \end{pmatrix} \]