Find the product of the following two matrices

3 -2| 1 -1
0 1| 1 1

1 answer

To find the product of two matrices, we follow the matrix multiplication rules. Let’s denote the matrices as follows:

Matrix A: A=(32 01)

Matrix B: B=(11 11)

The product C=AB is calculated using the formula for matrix multiplication:

Cij=kAikBkj

Now, we will multiply matrix A by matrix B:

  1. Calculate C11: C11=A11B11+A12B21=31+(2)1=32=1

  2. Calculate C12: C12=A11B12+A12B22=3(1)+(2)1=32=5

  3. Calculate C21: C21=A21B11+A22B21=01+11=0+1=1

  4. Calculate C22: C22=A21B12+A22B22=0(1)+11=0+1=1

Putting it all together, we have: C=(C11C12 C21C22)=(15 11)

Thus, the product of the two matrices is: (15 11)