Definition of a Matrix:
A matrix is a rectangular arrangement (array) of objects enclosed in brackets (square or round).
Let me be specific with my question, I have no trouble understanding the part that it's a "rectangular" array of objects. But my question is, is it necessary for a matrix have brackets?
For instance, can I call this thing below,
$$ \begin{array}{cc} a&b\\ c&d\\ e&f\\ \end{array} $$
or maybe this simply (table/grid) a matrix in mathematics?
While you could perhaps assume this notation without changing any mathematical content, the notation is inherently confusing. For instance, if we take $$ A=\begin{bmatrix} a_{11}&a_{12}&a_{13}\\ a_{21}&a_{22}&a_{23}\\ a_{31}&a_{32}&a_{33} \end{bmatrix}$$ and write $A^2$ in your notation, it looks like: $$ A^2= \begin{matrix} a_{11}&a_{12}&a_{13}\\ a_{21}&a_{22}&a_{23}\\ a_{31}&a_{32}&a_{33} \end{matrix} \begin{matrix} a_{11}&a_{12}&a_{13}\\ a_{21}&a_{22}&a_{23}\\ a_{31}&a_{32}&a_{33} \end{matrix} $$ which is unsightly and confusing. So it is much better to use brackets.