Lets say some linear transformation $T$ is defined by: $$T(x, y , z) = (x+2y, 2x+3y-4z, 4x-4y)$$
Now this can be expressed as $\begin{pmatrix}1&2&0\\2&3&-4\\4&-4&0\end{pmatrix} \begin{pmatrix}x\\y\\z\end{pmatrix}$.
A friend of mine asked me why cant we represent this transformation as $(x, y, ,z) M$ where $M$ is the matrix given above.
Doing that computation gives the output to be $(x+2y+4z, 2x+3y-4z,-4y)$ (commas used to seperate elements).
Is it just the case the matrix representing linear transformations are different if the vectors are expressed as rows?
$(x,\ y,\ z,)M^T=(x+2y,\ 2x+3y-4z, \ 4x-4y)$
and
$ M \begin{pmatrix}x\\y\\z\end{pmatrix}=(x+2y,\ 2x+3y-4z, \ 4x-4y)^T$,
since $( M \begin{pmatrix}x\\y\\z\end{pmatrix})^T=(x,\ y,\ z,)M^T.$