Matrix Multiplication-show all workl \( A=\left[\begin{array}{ll}7 & 3 \\ 6 & 1\end{array}\right] \quad B=\left[\begin{array}{ll}4 & 2 \\ 2 & 6\end{array}\right] \) \( A B= \) \( B A= \)
Upstudy AI Solution
Answer
Solution
Answered by UpStudy AI and reviewed by a Professional Tutor


Bonus Knowledge
To calculate the matrix multiplication \( A B \) and \( B A \), we will follow the rules of matrix multiplication, which involve taking the dot product of the rows of the first matrix with the columns of the second matrix. **For \( A B \)**: \( A = \left[\begin{array}{ll}7 & 3 \\ 6 & 1\end{array}\right] \) \( B = \left[\begin{array}{ll}4 & 2 \\ 2 & 6\end{array}\right] \) 1. The element in the first row, first column of \( AB \): \( 7 \cdot 4 + 3 \cdot 2 = 28 + 6 = 34 \) 2. The element in the first row, second column of \( AB \): \( 7 \cdot 2 + 3 \cdot 6 = 14 + 18 = 32 \) 3. The element in the second row, first column of \( AB \): \( 6 \cdot 4 + 1 \cdot 2 = 24 + 2 = 26 \) 4. The element in the second row, second column of \( AB \): \( 6 \cdot 2 + 1 \cdot 6 = 12 + 6 = 18 \) Therefore, \[ A B = \left[\begin{array}{ll}34 & 32 \\ 26 & 18\end{array}\right] \] **For \( B A \)**: 1. The element in the first row, first column of \( BA \): \( 4 \cdot 7 + 2 \cdot 6 = 28 + 12 = 40 \) 2. The element in the first row, second column of \( BA \): \( 4 \cdot 3 + 2 \cdot 1 = 12 + 2 = 14 \) 3. The element in the second row, first column of \( BA \): \( 2 \cdot 7 + 6 \cdot 6 = 14 + 36 = 50 \) 4. The element in the second row, second column of \( BA \): \( 2 \cdot 3 + 6 \cdot 1 = 6 + 6 = 12 \) Therefore, \[ B A = \left[\begin{array}{ll}40 & 14 \\ 50 & 12\end{array}\right] \] In conclusion: \[ A B = \left[\begin{array}{ll}34 & 32 \\ 26 & 18\end{array}\right], \quad B A = \left[\begin{array}{ll}40 & 14 \\ 50 & 12\end{array}\right] \]