2
$\begingroup$

Using this example, could someone tell me how to multiply a matrix by a vector?

$\left(\begin{array}{ccc} A & B & C \\ D & E & F \\ G & H & I \end{array}\right) * \left(\begin{array}{c} X \\ Y \\ Z \end{array} \right) = ? $

  • 0
    @Arturo There are people of all levels here, some of us are highly paid and highly intelligent, but didn't study math, so we don't know (and are trying to learn) how to multiply matrices.2013-03-12

1 Answers 1

6

You get:

$\begin{pmatrix}AX+BY+CZ\\DX+EY+FZ\\GX+HY+IZ\end{pmatrix}$

The method is the same as multiplying two matrices of compatible sizes, in the special case that the second has only a single column.