Hello transgalactic,
an easy way to multiply matrices is to use the so-called
Falk scheme.
1)
Here is a video of somebody showing how to use the Falk scheme. It's in German but the calculations
should be self-explanatory.
2) http://statmath.wu-wien.ac.at/courses/glm/matmult.html is another example. In the example you see the Falk scheme on the right side.
Do you see the 8? You get the 8 by "tilting" the column vector (2,1,1) to the row vector (3,2,0) and forming the dot product.
So in your imagination you have the vector (2,1,1) lying on (3,2,0):
(2,1,1)
(3,2,0)
from which you get: 2*3 + 1*2+1*0 = 8
Do you see the 4 (right to the 8)? You get the 4 by "tilting" the column vector (0,2,3) to the row vector (3,2,0) and forming the dot product.
So in your imagination you have the vector (0,2,3) lying on (3,2,0):
(0,2,3)
(3,2,0)
from which you get: 0*3 + 2*2 + 3*0 = 4