Difference between revisions of "Selftest: Multiplication of matrices"

From Robotics
Jump to: navigation, search
Line 20: Line 20:
  
 
{'''Mark the correct calculation specification for the following matrix multiplication:'''<br/>
 
{'''Mark the correct calculation specification for the following matrix multiplication:'''<br/>
 +
:<math> \left[\begin{array}{ccc}a_{11} & a_{12} & a_{13}\\a_{21} & a_{22} & a_{23}\end{array}\right]\left[\begin{array}{cc}b_{11} & b_{12}\\ b_{21} & b_{22} \\ b_{31} & b_{32}\end{array}\right]=</math>
 
|typ="()" }
 
|typ="()" }
<math> \left[\begin{array}{ccc}
+
 
a_{11} & a_{12} & a_{13}\\
+
- <math> \left[\begin{array}{ccc}a_{11}b_{11} & a_{12}b_{21} & a_{13}b_{31}\\a_{21}b_{12} & a_{22}b_{22} & a_{23}b_{32}\end{array}\right]</math>
a_{21} & a_{22} & a_{23}
+
- <math> \left[\begin{array}{cc}a_{11}b_{11}+ & a_{12}b_{21} & a_{13}b_{31}\\a_{21}b_{12} & a_{22}b_{22} & a_{23}b_{32}\end{array}\right]</math>
end{array}\right]
+
+ l-by-m
</math>
 
- m-by-m
 
+ l-by-n
 
- l-by-m
 
 
- m-by-n
 
- m-by-n
  
 
</quiz>
 
</quiz>

Revision as of 15:05, 4 July 2014

← Previous exercise: Addition of matrices Exercises for chapter Matrices | Article: Multiplication of matrices Next exercise: The determinant of a matrix


1. Consider the matrix multiplication \mathbf{A}\cdot\mathbf{B}. Which statement describes the requirements for this multiplication correctly?

number of rows of \mathbf{A} has to equal number of colums of \mathbf{B}
number of rows of \mathbf{A} has to equal number of rows of \mathbf{B}
number of colums of \mathbf{A} has to equal number of rows of \mathbf{B}
number of colums of \mathbf{A} has to equal number of colums of \mathbf{B}

2. Which dimensions does the resulting matrix of a multiplication of an l-by-m with an m-by-n matrix have?

m-by-m
l-by-n
l-by-m
m-by-n

3. Mark the correct calculation specification for the following matrix multiplication:

 \left[\begin{array}{ccc}a_{11} & a_{12} & a_{13}\\a_{21} & a_{22} & a_{23}\end{array}\right]\left[\begin{array}{cc}b_{11} & b_{12}\\ b_{21} & b_{22} \\ b_{31} & b_{32}\end{array}\right]=
 \left[\begin{array}{ccc}a_{11}b_{11} & a_{12}b_{21} & a_{13}b_{31}\\a_{21}b_{12} & a_{22}b_{22} & a_{23}b_{32}\end{array}\right]
Failed to parse (PNG conversion failed; check for correct installation of latex and dvipng (or dvips + gs + convert)): \left[\begin{array}{cc}a_{11}b_{11}+ & a_{12}b_{21} & a_{13}b_{31}\\a_{21}b_{12} & a_{22}b_{22} & a_{23}b_{32}\end{array}\right]
l-by-m
m-by-n

Your score is 0 / 0