We are asked to calculate the product \( AB \). The matrix \( A \) is a 1x3 matrix and \( B \) is a 3x2 matrix. The product \( AB \) will be a 1x2 matrix. To calculate the elements of the product, perform the matrix multiplication: \[ AB = \begin{bmatrix} 2 & 0 & 6 \end{bmatrix} \times \begin{bmatrix} 3 & 5 \\ 7 & -2 \\ 6 & 6 \end{bmatrix}. \] For the first element of the resulting matrix: \[ (2 \times 3) + (0 \times 7) + (6 \times 6) = 6 + 0 + 36 = 42. \] For the second element of the resulting matrix: \[ (2 \times 5) + (0 \times -2) + (6 \times 6) = 10 + 0 + 36 = 46. \] Thus, the product matrix is \[ AB = \begin{bmatrix} 42 & 46 \end{bmatrix}. \]
We are given two matrices:
\[ A = \begin{bmatrix} 2 & 0 & 6 \end{bmatrix}, \quad B = \begin{bmatrix} 3 & 5 \\ 7 & -2 \\ 6 & 6 \end{bmatrix} \] We need to compute the matrix product \( AB \). Note that \( A \) is a 1x3 matrix, and \( B \) is a 3x2 matrix. The resulting product \( AB \) will be a 1x2 matrix. To perform the matrix multiplication, we calculate each element of the resulting matrix by taking the dot product of the row of \( A \) with the corresponding column of \( B \). 1. First element: \[ 2 \times 3 + 0 \times 7 + 6 \times 6 = 6 + 0 + 36 = 42 \] 2. Second element: \[ 2 \times 5 + 0 \times (-2) + 6 \times 6 = 10 + 0 + 36 = 46 \] Thus, the matrix product \( AB \) is: \[ AB = \begin{bmatrix} 42 & 46 \end{bmatrix} \] .
Three students, Neha, Rani, and Sam go to a market to purchase stationery items. Neha buys 4 pens, 3 notepads, and 2 erasers and pays ₹ 60. Rani buys 2 pens, 4 notepads, and 6 erasers for ₹ 90. Sam pays ₹ 70 for 6 pens, 2 notepads, and 3 erasers.
Based upon the above information, answer the following questions:
(i) Form the equations required to solve the problem of finding the price of each item, and express it in the matrix form \( A \mathbf{X} = B \).