A matrix is a rectangular array of numbers or expressions. It can be represented as:
[
A = \begin{bmatrix}
a{11} & a{12} & … & a{1n} \
a{21} & a{22} & … & a{2n} \
… & … & … & … \
a{m1} & a{m2} & … & a_{mn}
\end{bmatrix}
]
Matrices can be viewed as a list of rows or columns.
The order of a matrix is indicated by its dimensions (m \times n), where (m) is the number of rows and (n) is the number of columns.
Example:
[
\begin{bmatrix}
1 & 2 & 3 \
4 & 5 & 6
\end{bmatrix}
z
]
This matrix has an order of (2 \times 3).
Exercises: Determine the order of various matrices.