I've recently noticed talking to a few classmates from another school in undergrad engineering, they are denoting a vector using n-tuple i.e.
$x = (x_1, x_2, x_3, \ldots, x_n) \in \mathbb{R}^n$
It is fine with me but then I noticed that they would proceed to multiply a matrix (for instance a $2 \times 2$ matrix $A$) as:
$Ax = \begin{bmatrix} a_1 & a_2 \\ a_3 & a_4 \end{bmatrix} x = \begin{bmatrix} a_1 & a_2 \\ a_3 & a_4 \end{bmatrix}(x_1, x_2)$
I was raised to denote $x$ as a column vector, so
$Ax = \begin{bmatrix} a_1 & a_2 \\ a_3 & a_4 \end{bmatrix} x = \begin{bmatrix} a_1 & a_2 \\ a_3 & a_4 \end{bmatrix}\begin{bmatrix}x_1\\ x_2\end{bmatrix}$
feels more comfortable to me. Truthfully, it also feels more correct.
Would $Ax = \begin{bmatrix} a_1 & a_2 \\ a_3 & a_4 \end{bmatrix} x = \begin{bmatrix} a_1 & a_2 \\ a_3 & a_4 \end{bmatrix}(x_1, x_2)$ be considered to be correct as well? Is it good practice?