Question 235116
<pre><font size = 4 color = "indigo"><b>
When you multiply a (2x3) matrix by a (3x1) matrix, you 
first find out what kind of matrix you're going to get
by this method:

({{{2}}}x{{{3}}}) by ({{{3}}}x{{{1}}})

Cross out the inner dimensions, which must be the same:

({{{2}}}x{{{cross(3)}}}) by ({{{cross(3)}}}x{{{1}}})

and you get a 

{{{2}}}x{{{1}}} matrix.

So we write this with a {2x1) matrix with
question marks for elements

{{{
(matrix(2,3,

4, -2, -7,
6,  3,  5))*(matrix(3,1,-2,5,3))=(matrix(2,1,"?","?"))}}}

To get what goes in place of the 1st question mark,

Multiply each element in the 1st row of the (2x3) matrix
by the corresponding element in the (3x1), then add,
like this:

{{{(4)(-2)+(-2)(5)+(-7)(3)=-8-10-21=-39}}}, so we have

{{{
(matrix(2,3,

4, -2, -7,
6,  3,  5))*(matrix(3,1,-2,5,3))=(matrix(2,1,-39,"?"))}}}

-------------------

To get what goes in place of the 2nd question mark,

Multiply each element in the 2nd row of the (2x3) matrix
by the corresponding element in the (3x1), then add,
like this:

{{{(6)(-2)+(3)(5)+(5)(3)=-12+15+15=18}}}, so we have

{{{
(matrix(2,3,

4, -2, -7,
6,  3,  5))*(matrix(3,1,-2,5,3))=(matrix(2,1,-39,"18"))}}}

-------------------

Edwin</pre>