Question 200366
i)


Since the first matrix is a 2 by 2 matrix and the second matrix is a 2 by 2 matrix, this means that the resulting matrix will be a 2 by  2 matrix.


So the final resulting matrix will look like:



{{{(matrix(2,2,x,x,x,x))}}}



note: the "x"s are just placeholders for now






Multiply the corresponding entries from the 1st row of the first matrix by the 1st column of the second matrix. After multiplying, add the values:

1st row, 1st column: {{{(matrix(2,2,highlight(1),highlight(0),0,1))(matrix(2,2,highlight(2),1,highlight(3),2))}}}

{{{(1)*(2)+(0)*(3)=2+0=2}}}



 So the element in the 1st row, 1st column of the resulting matrix is {{{2}}}. Now let's update the matrix:

 

{{{(matrix(2,2,2,x,x,x))}}}

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





Multiply the corresponding entries from the 1st row of the first matrix by the 2nd column of the second matrix. After multiplying, add the values:

1st row, 2nd column: {{{(matrix(2,2,highlight(1),highlight(0),0,1))(matrix(2,2,2,highlight(1),3,highlight(2)))}}}

{{{(1)*(1)+(0)*(2)=1+0=1}}}



 So the element in the 1st row, 2nd column of the resulting matrix is {{{1}}}. Now let's update the matrix:

 

{{{(matrix(2,2,2,1,x,x))}}}

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



================================================================================





Multiply the corresponding entries from the 2nd row of the first matrix by the 1st column of the second matrix. After multiplying, add the values:

2nd row, 1st column: {{{(matrix(2,2,1,0,highlight(0),highlight(1)))(matrix(2,2,highlight(2),1,highlight(3),2))}}}

{{{(0)*(2)+(1)*(3)=0+3=3}}}



 So the element in the 2nd row, 1st column of the resulting matrix is {{{3}}}. Now let's update the matrix:

 

{{{(matrix(2,2,2,1,3,x))}}}

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





Multiply the corresponding entries from the 2nd row of the first matrix by the 2nd column of the second matrix. After multiplying, add the values:

2nd row, 2nd column: {{{(matrix(2,2,1,0,highlight(0),highlight(1)))(matrix(2,2,2,highlight(1),3,highlight(2)))}}}

{{{(0)*(1)+(1)*(2)=0+2=2}}}



 So the element in the 2nd row, 2nd column of the resulting matrix is {{{2}}}. Now let's update the matrix:

 

{{{(matrix(2,2,2,1,3,2))}}}

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







==============================================================================



Answer:



So the solution is  {{{(matrix(2,2,2,1,3,2))}}}


In other words,


{{{AB=(matrix(2,2,1,0,0,1))*(matrix(2,2,2,1,3,2))=(matrix(2,2,2,1,3,2))}}}



which means that {{{AB=(matrix(2,2,2,1,3,2))}}}




<hr>


ii)


If you raise ANY matrix to a power of 1, you'll get that same matrix as a result. So {{{B^1=B=(matrix(2,2,2,1,3,2))}}}


<hr>


iii)


First, let's calculate {{{C^T}}} (the transpose of matrix C). So simply swap each row and column to get:


{{{C^T=(matrix(3,2,1,4,3,-1,-2,5))^T=(matrix(2,3,1,3,-2,4,-1,5))}}}



So {{{C^T=(matrix(2,3,1,3,-2,4,-1,5))}}}



Now let's multiply the matrices B and {{{C^T}}}:



Since the first matrix is a 2 by 2 matrix and the second matrix is a 2 by 3 matrix, this means that the resulting matrix will be a 2 by  3 matrix.


So the final resulting matrix will look like:



{{{(matrix(2,2,x,x,x,x,x,x))}}}



note: the "x"s are just placeholders for now






Multiply the corresponding entries from the 1st row of the first matrix by the 1st column of the second matrix. After multiplying, add the values:

1st row, 1st column: {{{(matrix(2,2,highlight(2),highlight(1),3,2))(matrix(2,3,highlight(1),3,-2,highlight(4),-1,5))}}}

{{{(2)*(1)+(1)*(4)=2+4=6}}}



 So the element in the 1st row, 1st column of the resulting matrix is {{{6}}}. Now let's update the matrix:

 

{{{(matrix(2,2,6,x,x,x,x,x))}}}

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





Multiply the corresponding entries from the 1st row of the first matrix by the 2nd column of the second matrix. After multiplying, add the values:

1st row, 2nd column: {{{(matrix(2,2,highlight(2),highlight(1),3,2))(matrix(2,3,1,highlight(3),-2,4,highlight(-1),5))}}}

{{{(2)*(3)+(1)*(-1)=6+-1=5}}}



 So the element in the 1st row, 2nd column of the resulting matrix is {{{5}}}. Now let's update the matrix:

 

{{{(matrix(2,2,6,5,x,x,x,x))}}}

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





Multiply the corresponding entries from the 1st row of the first matrix by the 3rd column of the second matrix. After multiplying, add the values:

1st row, 3rd column: {{{(matrix(2,2,highlight(2),highlight(1),3,2))(matrix(2,3,1,3,highlight(-2),4,-1,highlight(5)))}}}

{{{(2)*(-2)+(1)*(5)=-4+5=1}}}



 So the element in the 1st row, 3rd column of the resulting matrix is {{{1}}}. Now let's update the matrix:

 

{{{(matrix(2,2,6,5,1,x,x,x))}}}

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



================================================================================





Multiply the corresponding entries from the 2nd row of the first matrix by the 1st column of the second matrix. After multiplying, add the values:

2nd row, 1st column: {{{(matrix(2,2,2,1,highlight(3),highlight(2)))(matrix(2,3,highlight(1),3,-2,highlight(4),-1,5))}}}

{{{(3)*(1)+(2)*(4)=3+8=11}}}



 So the element in the 2nd row, 1st column of the resulting matrix is {{{11}}}. Now let's update the matrix:

 

{{{(matrix(2,2,6,5,1,11,x,x))}}}

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





Multiply the corresponding entries from the 2nd row of the first matrix by the 2nd column of the second matrix. After multiplying, add the values:

2nd row, 2nd column: {{{(matrix(2,2,2,1,highlight(3),highlight(2)))(matrix(2,3,1,highlight(3),-2,4,highlight(-1),5))}}}

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



 So the element in the 2nd row, 2nd column of the resulting matrix is {{{7}}}. Now let's update the matrix:

 

{{{(matrix(2,2,6,5,1,11,7,x))}}}

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





Multiply the corresponding entries from the 2nd row of the first matrix by the 3rd column of the second matrix. After multiplying, add the values:

2nd row, 3rd column: {{{(matrix(2,2,2,1,highlight(3),highlight(2)))(matrix(2,3,1,3,highlight(-2),4,-1,highlight(5)))}}}

{{{(3)*(-2)+(2)*(5)=-6+10=4}}}



 So the element in the 2nd row, 3rd column of the resulting matrix is {{{4}}}. Now let's update the matrix:

 

{{{(matrix(2,2,6,5,1,11,7,4))}}}

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







==============================================================================



Answer:



So the solution is  {{{(matrix(2,3,6,5,1,11,7,4))}}}


In other words,


{{{BC^T=(matrix(2,2,2,1,3,2))*(matrix(2,2,1,3,-2,4,-1,5))=(matrix(2,3,6,5,1,11,7,4))}}}



which in short means {{{BC^T=(matrix(2,3,6,5,1,11,7,4))}}}