Which of the following matrices is equal to ?
ACT Math · Learn by Concept
ACT Math Help: Matrices
Review real example questions for Matrices in ACT Math.
Question 1 / 10
0 of 10 answered
All questions
Question 1
Which of the following matrices is equal to 3[24−10]?
- [5723]
- [612−30] (correct answer)
- [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 2
If A=(31−24), what is −A?
- (−31−2−4)
- (3−1−24)
- (−3−12−4) (correct answer)
- (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 3
What is the determinant of matrix (23−14)?
- 11 (correct answer)
- -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 4
What is the determinant of matrix (4123)?
- 4
- 8
- 10 (correct answer)
- 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 5
Two sensors produce readings stored in matrices. What is A+B if A=[0−532] and B=[12−41]?
- [1−373]
- [−1−771]
- [1−3−13] (correct answer)
- [0−10−122]
Explanation: This problem requires matrix addition, where we add corresponding entries of matrices A and B. For matrices A = [[0, 3], [-5, 2]] and B = [[1, -4], [2, 1]], we compute: entry (1,1): 0 + 1 = 1, entry (1,2): 3 + (-4) = -1, entry (2,1): -5 + 2 = -3, entry (2,2): 2 + 1 = 3. The result is [[1, -1], [-3, 3]].
Question 6
What is the determinant of matrix (1324)?
- -2 (correct answer)
- 2
- 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 [[1,2],[3,4]], so the determinant is (1)(4) - (2)(3) = 4 - 6 = -2. The answer is -2.
Question 7
Two matrices represent consecutive transformations on a vector. Which of the following is the product AB if $$A=\begin{bmatrix}0 & 2\ -1 & 3\end{bmatrix},\quad B=\begin{bmatrix}5 & -2\ 1 & 4\end{bmatrix}?$
- [2−5−412]
- [0−1−412]
- [2−2814] (correct answer)
- [2−8814]
Explanation: This problem requires computing the matrix product AB for consecutive transformations. To multiply matrices, compute dot products: for (1,1), row 1 of A dot column 1 of B is (0)(5)+(2)(1)=2; for (1,2), (0)(−2)+(2)(4)=8; for (2,1), (−1)(5)+(3)(1)=−2; for (2,2), (−1)(−2)+(3)(4)=14. The product AB is $$ \begin{bmatrix} 2 & 8 \ -2 & 14 \end{bmatrix}
Question 8
Which of the following is the product AB for matrices A=(0123) and B=(1201)?
- (4724)
- (4633)
- (4723) (correct answer)
- (6623)
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)(1) + (2)(2) = 0 + 4 = 4; entry (1,2): (0)(0) + (2)(1) = 0 + 2 = 2; entry (2,1): (1)(1) + (3)(2) = 1 + 6 = 7; entry (2,2): (1)(0) + (3)(1) = 0 + 3 = 3. The result is [[4,2],[7,3]]. Choice C correctly shows this matrix multiplication.
Question 9
What is A + B for matrices A=(2−103) and B=(021−2)?
- (2111) (correct answer)
- (2−113)
- (0111)
- (210−5)
Explanation: This problem requires matrix addition, which is performed by adding corresponding entries from the two matrices. For A + B, we compute: (1,1) entry: 2 + 0 = 2; (1,2) entry: 0 + 1 = 1; (2,1) entry: -1 + 2 = 1; (2,2) entry: 3 + (-2) = 1. The result is [[2,1],[1,1]]. Choice A correctly shows this result.
Question 10
Let A=[1−123] and B=[04−21]. Which of the following is the product AB?
- [81205] (correct answer)
- [0−4−43]
- [8120−1]
- [80125]
Explanation: The operation is matrix multiplication, which involves taking dot products of rows from the first matrix with columns from the second. For AB, the (1,1) entry is row 1 of A dot column 1 of B: 10 + 24 = 8; (1,2) is 1*(-2) + 21 = 0; (2,1) is -10 + 34 = 12; (2,2) is -1(-2) + 3*1 = 5. Remember, matrix multiplication is not commutative, so AB differs from BA, and always verify dimensions for compatibility. The result is the matrix $$ \begin{bmatrix}8 & 0\ 12 & 5\end{bmatrix}