Let $A$ be a $4\times 3$ matrix. Consider matrix $B$ which is a pre-multiplier of matrix $A$, that is, $BA$. Find matrix $B$ if it performs the following elementary row operation on $A$
Multiplies the second row by 4.
I let $C$ be the product after multiplying the second row by $4$ and put it in the equation $BA=C$.
I let $A=\begin{matrix}a&b&c\\d&e&f\\g&h&i\\j&k&l\\\end{matrix}$ and $C=\begin{matrix}a&b&c\\4d&4e&4f\\g&h&i\\j&k&l\\\end{matrix}$
My next step I thought would be to rearrange $BA=C$ into $B=CA^{-1}$. However this requires finding the inverse of a non-square matrix. How would I go about this? and how would I use this to find other operations such as:
Adds twice row $3$ to row $4$, or Interchanges rows $1$ and $3$.
Also my knowledge of matrices goes as far as Gaussian Elimination, Determinants and Cofactor/Adjoint Matrices. So I may not understand anything more advanced than this unless you can explain it well.