Question 1
Matrices A and B represent two coded messages combined by addition. What is A+B if A=[−143−2],B=[5−2−31]?
- [−5−80−3]
- [−6−863]
- [426−1]
- [420−1]
Explanation: This problem involves adding matrices A and B to combine coded messages. Matrix addition is performed by adding corresponding entries. For the entries: (1,1) is −1+5=4; (1,2) is 3+(−3)=0; (2,1) is 4+(−2)=2; (2,2) is −2+1=−1. The sum A+B is [420−1]. Choice C incorrectly adds 3+(−3) as 6, likely an arithmetic mistake in signs. Question 2
Which of the following matrices is equal to 3[24−10]?
- [5723]
- [612−30]
- [612−10]
- [57−30]
Explanation: The correct answer is B. Scalar matrix multiplication multiplies every entry in the matrix by the scalar. 3 × 2 = 6, 3 × (−1) = −3, 3 × 4 = 12, 3 × 0 = 0. This gives [6, −3; 12, 0]. A ([5, 2; 7, 3]) results from adding 3 to each entry instead of multiplying. C ([6, −1; 12, 0]) correctly multiplies the first column but leaves the −1 entry unchanged — the student multiplied 3 by 2 and 4 but forgot to multiply 3 by −1. D ([5, −3; 7, 0]) adds 3 to the first column entries but correctly multiplies the second column. Pro tip: in scalar multiplication, every single entry gets multiplied — never leave any entry untouched.
Question 3
If A=(31−24), what is −A?
- (−31−2−4)
- (3−1−24)
- (−3−12−4)
- (3124)
Explanation: This problem involves finding the negative of a matrix, where each entry is multiplied by -1. For matrix A = (31−24), we compute -A by multiplying each entry by -1: (−1)(3)=−3, (−1)(−2)=2, (−1)(1)=−1, (−1)(4)=−4. The result is (−3−12−4). Choice C correctly shows this negation. Question 4
If A=(0−214), what is −3A?
- (06−3−12)
- (0−6312)
- (0−6−312)
- (0−214)
Explanation: This problem involves scalar multiplication of a matrix, where each entry is multiplied by the scalar -3. For matrix A = [[0,1],[-2,4]], we compute -3A by multiplying each entry: (-3)(0) = 0, (-3)(1) = -3, (-3)(-2) = 6, (-3)(4) = -12. The result is [[0,-3],[6,-12]]. Choice A correctly shows this scalar multiplication.
Question 5
Which of the following is the product AB for matrices A=(021−1) and B=(3120)?
- (3604)
- (1524)
- (1502)
- (1504)
Explanation: This problem requires matrix multiplication AB, where entry (i,j) equals row i of A dotted with column j of B. For entry (1,1): (0)(3) + (1)(1) = 0 + 1 = 1; entry (1,2): (0)(2) + (1)(0) = 0 + 0 = 0; entry (2,1): (2)(3) + (-1)(1) = 6 - 1 = 5; entry (2,2): (2)(2) + (-1)(0) = 4 - 0 = 4. The result is [[1,0],[5,4]]. Choice D correctly shows this matrix multiplication.
Question 6
If A=(30−21), what is 3A?
- (30−63)
- (60−42)
- (90−63)
- (90−21)
Explanation: This problem involves scalar multiplication of a matrix, where each entry is multiplied by the scalar 3. For matrix A = (30−21), we compute 3A by multiplying each entry: 3(3)=9, 3(−2)=−6, 3(0)=0, 3(1)=3. The result is (90−63). Choice C correctly shows this scalar multiplication. Question 7
What is the determinant of matrix (23−14)?
- 11
- -11
- 10
- -10
Explanation: This problem asks for the determinant of a 2×2 matrix. For matrix [[a,b],[c,d]], the determinant is ad - bc. Here we have [[2,-1],[3,4]], so the determinant is (2)(4) - (-1)(3) = 8 - (-3) = 8 + 3 = 11. The answer is 11.
Question 8
What is the determinant of matrix (3212)?
- 3
- 5
- 4
- 6
Explanation: This problem asks for the determinant of a 2×2 matrix. For matrix [[a,b],[c,d]], the determinant is ad - bc. Here we have [[3,1],[2,2]], so the determinant is (3)(2) - (1)(2) = 6 - 2 = 4. The answer is 4.
Question 9
What is the determinant of matrix (4123)?
- 4
- 8
- 10
- 14
Explanation: This problem asks for the determinant of a 2×2 matrix. For matrix [[a,b],[c,d]], the determinant is ad - bc. Here we have [[4,2],[1,3]], so the determinant is (4)(3) - (2)(1) = 12 - 2 = 10. The answer is 10.
Question 10
What is the determinant of the matrix [−3421]?
- 11
- 5
- −11
- −5
Explanation: The operation is finding the determinant of a 2x2 matrix using the formula ad−bc. For the matrix [−3421], it's (−3)(1)−(2)(4)=−3−8=−11. This computation is essential for determining if the matrix is invertible. The result is -11. Choice D switches to bc−ad, which reverses the sign incorrectly.