[Math] Matrix Mathematical Notation

linear algebramatricesnotation

I am trying to work out the mathematical notation for combining the columns of two matrices, $$A=\begin{pmatrix}1 & 3 & 5 \\ 2 & 4 & 1 \\ 3 & 7 & 9\end{pmatrix}$$ and $$B=\begin{pmatrix}4 & 4 & 3 \\ 9 & 10 & 11 \\ 12 & 15 & 13\end{pmatrix},$$ to form the new matrix $$C=\begin{pmatrix}1 & 4 & 3\\ 2 & 10 & 11 \\ 3 & 15 & 13\end{pmatrix}.$$ $C$ is a matrix which is made up of the first column of $A$ and the last two columns of $B$. The problem I have is expressing $C$ in terms of $A$ and $B$ using appropriate mathematical notation, I can code it, I just don't know the notation for it! Any suggestions?

Best Answer

Note that $C=\underbrace{A\begin{bmatrix}1 & 0 & 0\\ 0 & 0 & 0\\ 0 & 0 & 0\end{bmatrix}}_{\text{Saves first column of }A}+\underbrace{B\begin{bmatrix}0 & 0 & 0\\ 0 & 1 & 0\\ 0 & 0 & 1\end{bmatrix}}_{\text{Saves last two columns of }B}$.

You should be able to generalize.

Related Question