Question 160683
How do you multiply all of these numbers????
 
{{{(matrix(4,6,7, -6, 5, -4, 8, 1, -2, 1, -8, -3, 9, -1, 0, -1, 7, -4, 6, -5, 3, -8, 9, 2, -1, 0))*(matrix(6,4,7, 2, -1, 4, 8, 9, -7, 3, -4, -1, -4, -9, 3, 2, 1, 0, 2, 7, -6, -5, -1, 4, 8, -1))}}} 
<pre><font size = 4 color = "brown"><b>
The first matrix has dimensions 4 down by 6 across.
That's a 4x6 matrix. 
The second matrix has dimensions 6 down by 4 across.  
That's a 6x4 matrix.

Write    <font color = "red">4</font>x<font color = "blue">6</font> <font color = "blue">6</font>x<font color = "red">4</font>

The two (blue) inner dimensions are both 6.  They must be the same
in order for the matrices to even be multipliable. If they weren't the
same, the multiplication would not be defined. Since they are both
6, they can be multiplied.  The product matrix will have the two outer
(red) dimensions.  They are both 4, so the product matrix will be a 
4x4 matrix.

Set the product equal to a 4x4 matrix of blanks to
fill in.

{{{(matrix(4,6,7, -6, 5, -4, 8, 1, -2, 1, -8, -3, 9, -1, 0, -1, 7, -4, 6, -5, 3, -8, 9, 2, -1, 0))*(matrix(6,4,7, 2, -1, 4, 8, 9, -7, 3, -4, -1, -4, -9, 3, 2, 1, 0, 2, 7, -6, -5, -1, 4, 8, -1))=(matrix(4,4,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_))}}}

I won't go through all 16 blanks. I will only tell you how to fill in
three of them at random.  Then you will know how to do all the rest.
---
Let's fill in the blank which is in row 3 and column 2:

Take row 3 from the first matrix:

{{{(matrix(1,6,0, -1, 7, -4, 6, -5))}}}
and column 2 of the second matrix:

{{{(matrix(6,1,2,9,-1,2, 7,4))}}}
 
Multiply corresponding elements then add them all:

{{{(0)(2)+(-1)(9)+(7)(-1)+(-4)(2)+(6)(7)+(-5)(4)}}}=

{{{0-9-7-8+42-20=-2}}}

So put a {{{-2}}} in the blank in row 3 and column 2:

{{{(matrix(4,6,7, -6, 5, -4, 8, 1, -2, 1, -8, -3, 9, -1, 0, -1, 7, -4, 6, -5, 3, -8, 9, 2, -1, 0))*(matrix(6,4,7, 2, -1, 4, 8, 9, -7, 3, -4, -1, -4, -9, 3, 2, 1, 0, 2, 7, -6, -5, -1, 4, 8, -1))=(matrix(4,4,_,_,_,_,_,_,_,_,_,-2,_,_,_,_,_,_))}}}
---
Next let's fill in the blank in the upper right hand corner.
That is the blank in row 1 and in column 4:

Take row 1 from the first matrix:

{{{(matrix(1,6,7, -6, 5, -4, 8, 1))}}}
and column 4 from the second matrix:

{{{(matrix(6,1,4,3,-9,0, -5,-1))}}}
 
Multiply corresponding elements then add them all:

{{{(7)(4)+(-6)(3)+(5)(-9)+(-4)(0)+(8)(-5)+(1)(-1)}}}=

{{{28-18-45+0-40-1=-76}}}

So put a {{{-76}}} in the blank in row 1 and column 4:

{{{(matrix(4,6,7, -6, 5, -4, 8, 1, -2, 1, -8, -3, 9, -1, 0, -1, 7, -4, 6, -5, 3, -8, 9, 2, -1, 0))*(matrix(6,4,7, 2, -1, 4, 8, 9, -7, 3, -4, -1, -4, -9, 3, 2, 1, 0, 2, 7, -6, -5, -1, 4, 8, -1))=(matrix(4,4,_,_,_,-76,_,_,_,_,_,-2,_,_,_,_,_,_))}}}
----
One more!

Let's fill in the blank in row 2 and column 1:

Take row 2 from the first matrix:

{{{(matrix(1,6,-2, 1, -8, -3, 9, -1))}}}
and column 1 of the second matrix:

{{{(matrix(6,1,7,8,-4,3, 2,-1))}}}
 
Multiply corresponding elements then add them all:

{{{(-2)(7)+(1)(8)+(-8)(-4)+(-3)(3)+(9)(2)+(-1)(-1)}}}=

{{{-14+8+32-9+18+1=36}}}

So put a {{{36}}} in the blank in row 2 and column 1:

{{{(matrix(4,6,7, -6, 5, -4, 8, 1, -2, 1, -8, -3, 9, -1, 0, -1, 7, -4, 6, -5, 3, -8, 9, 2, -1, 0))*(matrix(6,4,7, 2, -1, 4, 8, 9, -7, 3, -4, -1, -4, -9, 3, 2, 1, 0, 2, 7, -6, -5, -1, 4, 8, -1))=(matrix(4,4,_,_,_,-76,36,_,_,_,_,-2,_,_,_,_,_,_))}}} 

Do you see how to do it now?  To fill in any blank in the 
product matrix, you decide which row and column the blank
is in which you want to fill, then get the corresponding 
row from the first matrix, and the corresponding column 
from the second matrix, then multiply corresponding elements 
and add them.  You can fill them in in any order you choose.

When you fill in the rest of the blanks you should have this:

{{{(matrix(4,6,7, -6, 5, -4, 8, 1, -2, 1, -8, -3, 9, -1, 0, -1, 7, -4, 6, -5, 3, -8, 9, 2, -1, 0))*(matrix(6,4,7, 2, -1, 4, 8, 9, -7, 3, -4, -1, -4, -9, 3, 2, 1, 0, 2, 7, -6, -5, -1, 4, 8, -1))=(matrix(4,4,-16,7,-29,-76,36,66,-38,23,-31,-2,-101,-91,-75,-78,25,-88))}}}  

Edwin</pre>