Question

Difficulty: HardMatrices and Matrix Operations

Matrices AA, BB, and CC are defined such that A=[x324]A = \begin{bmatrix} x & 3 \\ -2 & 4 \end{bmatrix}, B=[21y5]B = \begin{bmatrix} 2 & -1 \\ y & 5 \end{bmatrix}, and C=[1411422]C = \begin{bmatrix} 14 & 11 \\ 4 & 22 \end{bmatrix}. If AB=CAB = C, what is the value of x+yx + y?

Answer: 6

Answer

The value of x+yx + y is 6.
The correct answer is 6 because performing the matrix multiplication ABAB yields the matrix [2x+3yx+154+4y22]\begin{bmatrix} 2x + 3y & -x + 15 \\ -4 + 4y & 22 \end{bmatrix}. Equating this to matrix CC gives the equations x+15=11-x + 15 = 11, which yields x=4x = 4, and 4+4y=4-4 + 4y = 4, which yields y=2y = 2. The sum of these values is 4+2=64 + 2 = 6. This is verified by checking the remaining equation 2(4)+3(2)=142(4) + 3(2) = 14.

Step-by-Step Solution

1
Multiply matrix AA and matrix BB to express the product ABAB algebraically.
AB=[x(2)+3(y)x(1)+3(5)2(2)+4(y)2(1)+4(5)]=[2x+3yx+154+4y22]AB = \begin{bmatrix} x(2) + 3(y) & x(-1) + 3(5) \\ -2(2) + 4(y) & -2(-1) + 4(5) \end{bmatrix} = \begin{bmatrix} 2x + 3y & -x + 15 \\ -4 + 4y & 22 \end{bmatrix}
To solve for the variables, we must first determine the resulting matrix from the multiplication of AA and BB.
2
Set up equations by equating the entries of ABAB with the corresponding entries of matrix CC.
2x+3y=142x + 3y = 14, x+15=11-x + 15 = 11, and 4+4y=4-4 + 4y = 4
Two matrices are equal if and only if all of their corresponding elements are equal.
3
Solve the single-variable equation from the first row, second column for xx.
x+15=11    x=4    x=4-x + 15 = 11 \implies -x = -4 \implies x = 4
Isolating xx gives its numeric value.
4
Solve the single-variable equation from the second row, first column for yy.
4+4y=4    4y=8    y=2-4 + 4y = 4 \implies 4y = 8 \implies y = 2
Isolating yy gives its numeric value.
5
Verify consistency with the remaining equation and calculate the final sum x+yx + y.
2(4)+3(2)=8+6=142(4) + 3(2) = 8 + 6 = 14 (consistent), and x+y=4+2=6x + y = 4 + 2 = 6.
Checking the first row, first column confirms the values are correct, and adding them yields the requested sum.

Key Concept

Matrix multiplication and matrix equality
Rate this question