Problem 182
Question
If \(A=\left[\begin{array}{ll}1 & 2 \\ 3 & 4\end{array}\right], B=\left[\begin{array}{ll}2 & 1 \\ 4 & 2\end{array}\right], C=\left[\begin{array}{ll}5 & 1 \\ 7 & 4\end{array}\right]\). Show that \(A(B+C)=A B+A C\).
Step-by-Step Solution
Verified Answer
Therefore, it is shown that \(A(B+C)=AB+AC\), confirming the distributive property of matrix multiplication over addition.
1Step 1: Calculate B+C
The first step is to add matrices B and C. We add corresponding elements in the matrices: \(B+C=\left[\begin{array}{ll}2 & 1 \ 4 & 2\end{array}\right]+\left[\begin{array}{ll}5 & 1 \ 7 & 4\end{array}\right]=\left[\begin{array}{ll}2+5 & 1+1 \ 4+7 & 2+4\end{array}\right]=\left[\begin{array}{ll}7 & 2 \ 11 & 6\end{array}\right]\)
2Step 2: Calculate A(B+C)
Now, we will multiply matrix \(A\) with \(B+C\): \(A(B+C)=\left[\begin{array}{ll}1 & 2 \ 3 & 4\end{array}\right]\left[\begin{array}{ll}7 & 2 \ 11 & 6\end{array}\right]=\left[\begin{array}{ll}1*7+2*11 & 1*2+2*6 \ 3*7+4*11 & 3*2+4*6\end{array}\right]=\left[\begin{array}{ll}29 & 14 \ 71 & 30\end{array}\right]\)
3Step 3: Calculate AB and AC
Now, calculate the matrices AB and AC individually: \(AB=\left[\begin{array}{ll}1 & 2 \ 3 & 4\end{array}\right]\left[\begin{array}{ll}2 & 1 \ 4 & 2\end{array}\right]=\left[\begin{array}{ll}1*2+2*4 & 1*1+2*2 \ 3*2+4*4 & 3*1+4*2\end{array}\right]=\left[\begin{array}{ll}10 & 5 \ 22 & 11\end{array}\right]\). \(AC=\left[\begin{array}{ll}1 & 2 \ 3 & 4\end{array}\right]\left[\begin{array}{ll}5 & 1 \ 7 & 4\end{array}\right]=\left[\begin{array}{ll}1*5+2*7 & 1*1+2*4 \ 3*5+4*7 & 3*1+4*4\end{array}\right]=\left[\begin{array}{ll}19 & 9 \ 43 & 19\end{array}\right]\)
4Step 4: Calculate AB + AC
The final step is to add the two matrices AB and AC: \(AB+AC=\left[\begin{array}{ll}10 & 5 \ 22 & 11\end{array}\right]+\left[\begin{array}{ll}19 & 9 \ 43 & 19\end{array}\right]=\left[\begin{array}{ll}10+19 & 5+9 \ 22+43 & 11+19\end{array}\right]=\left[\begin{array}{ll}29 & 14 \ 71 & 30\end{array}\right]\)
Key Concepts
Matrix AdditionMatrix MultiplicationDistributive Property of Matrices
Matrix Addition
Matrix addition is a straightforward process that involves adding two matrices of the same dimensions by summing their corresponding elements. Consider two matrices, \(B\) and \(C\), each of size 2x2:
- \(B = \left[\begin{array}{ll}2 & 1 \ 4 & 2\end{array}\right]\)
- \(C = \left[\begin{array}{ll}5 & 1 \ 7 & 4\end{array}\right]\)
Matrix Multiplication
Matrix multiplication is a bit more complex than matrix addition and requires the number of columns in the first matrix to match the number of rows in the second matrix. If \(A\) is a 2x2 matrix like:\[A = \left[\begin{array}{ll}1 & 2 \ 3 & 4\end{array}\right]\]It can be multiplied with another 2x2 matrix like \(B+C\):\[B+C = \left[\begin{array}{ll}7 & 2 \ 11 & 6\end{array}\right]\]To find \(A(B+C)\), we multiply and sum across the rows of \(A\) and the columns of \(B+C\):
- First row, first column: \(1 \times 7 + 2 \times 11 = 29\)
- First row, second column: \(1 \times 2 + 2 \times 6 = 14\)
- Second row, first column: \(3 \times 7 + 4 \times 11 = 71\)
- Second row, second column: \(3 \times 2 + 4 \times 6 = 30\)
Distributive Property of Matrices
The distributive property is a fundamental concept in mathematics and applies to matrices as well. It states that for matrices \(A\), \(B\), and \(C\) of appropriate dimensions:\[A(B+C) = AB + AC\]To demonstrate this, we need to compute each product separately and then show they are equal:
- \(AB = \left[\begin{array}{ll}10 & 5 \ 22 & 11\end{array}\right]\)
- \(AC = \left[\begin{array}{ll}19 & 9 \ 43 & 19\end{array}\right]\)
Other exercises in this chapter
Problem 180
If \(A=\left[\begin{array}{cc}-1 & 2 \\ 2 & 3\end{array}\right], B=\left[\begin{array}{ll}3 & 0 \\ 1 & 1\end{array}\right]\). Verify that \((A+B)^{2}=A^{2}+A B+
View solution Problem 181
If \(A=\left[\begin{array}{cc}0 & 1 \\ 1 & 1\end{array}\right], B=\left[\begin{array}{cc}0 & -1 \\ 1 & 0\end{array}\right]\), show that \((A+B)(A-B) \neq A^{2}-
View solution Problem 183
The matrix \(\boldsymbol{R}(t)\) is defined by \(R(t)=\left[\begin{array}{cc}\cos t & \sin t \\ -\sin t & \cos t\end{array}\right]\). Show that \(\boldsymbol{R}
View solution Problem 184
If \(A=\left[\begin{array}{cc}\cos \alpha & -\sin \alpha \\ \sin \alpha & \cos \alpha\end{array}\right], B=\left[\begin{array}{cc}\cos \beta & -\sin \beta \\\ \
View solution