Question

Difficulty: MediumMatrices and Determinants

Given the matrices A=(3y21)A = \begin{pmatrix} 3 & y \\ 2 & 1 \end{pmatrix} and B=(14x2)B = \begin{pmatrix} 1 & 4 \\ x & 2 \end{pmatrix}, if AB=(916510)AB = \begin{pmatrix} 9 & 16 \\ 5 & 10 \end{pmatrix}, what is the value of x+yx + y?

  1. 55Answer
  2. B
    66
  3. C
    77
  4. D
    99

Answer

The value of x+yx + y is 55.
Multiplying matrix AA by matrix BB using standard row-by-column multiplication yields AB=(3+xy12+2y2+x10)AB = \begin{pmatrix} 3 + xy & 12 + 2y \\ 2 + x & 10 \end{pmatrix}. Setting this equal to (916510)\begin{pmatrix} 9 & 16 \\ 5 & 10 \end{pmatrix} gives 2+x=5    x=32 + x = 5 \implies x = 3 and 12+2y=16    y=212 + 2y = 16 \implies y = 2. Thus, x+y=3+2=5x + y = 3 + 2 = 5.

Step-by-Step Solution

1
Compute the product matrix ABAB using matrix multiplication rules.
AB=(3(1)+y(x)3(4)+y(2)2(1)+1(x)2(4)+1(2))=(3+xy12+2y2+x10)AB = \begin{pmatrix} 3(1) + y(x) & 3(4) + y(2) \\ 2(1) + 1(x) & 2(4) + 1(2) \end{pmatrix} = \begin{pmatrix} 3 + xy & 12 + 2y \\ 2 + x & 10 \end{pmatrix}
Matrix multiplication requires taking the dot product of rows from the first matrix and columns from the second matrix.
2
Equate the elements of ABAB with the given matrix (916510)\begin{pmatrix} 9 & 16 \\ 5 & 10 \end{pmatrix} to solve for xx and yy.
From row 2, column 1: 2+x=5    x=32 + x = 5 \implies x = 3. From row 1, column 2: 12+2y=16    2y=4    y=212 + 2y = 16 \implies 2y = 4 \implies y = 2.
Two matrices are equal if and only if their corresponding elements are equal.
3
Calculate the sum x+yx + y.
x+y=3+2=5x + y = 3 + 2 = 5
Substituting the values found for xx and yy into the requested expression.

Key Concept

Matrix Multiplication and Equality of Matrices

Alternative Method

Verification can be done by checking row 1, column 1: 3+xy=3+(3)(2)=93 + xy = 3 + (3)(2) = 9, which matches the given matrix entry.
Estimated Time:1m 15s
Rate this question