What this quiz covers
This quiz focuses on Matrices, giving you a quick way to practice the rules, question types, and explanations that matter most for ACT Math.
Which of the following matrices is equal to 3[24−10]?
ACT Math Quiz
Practice Matrices in ACT Math with focused quiz questions that help you check what you know, review explanations, and build confidence with test-style prompts.
This quiz focuses on Matrices, giving you a quick way to practice the rules, question types, and explanations that matter most for ACT Math.
Try each quiz question before looking at the correct answer. Use the explanations to review missed ideas, then come back to similar questions until the pattern feels familiar.
Which of the following matrices is equal to 3[24−10]?
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.
If A=(31−24), what is −A?
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.
What is the determinant of matrix (23−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 [[2,-1],[3,4]], so the determinant is (2)(4) - (-1)(3) = 8 - (-3) = 8 + 3 = 11. The answer is 11.
What is the determinant of matrix (4123)?
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.
Two sensors produce readings stored in matrices. What is A+B if A=[0−532] and B=[12−41]?
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]].
What is the determinant of matrix (1324)?
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.
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}?$
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}
Which of the following is the product AB for matrices A=(0123) and B=(1201)?
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.
What is A + B for matrices A=(2−103) and B=(021−2)?
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.
Let A=[1−123] and B=[04−21]. Which of the following is the product AB?
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}
What is A+B for matrices A and B given by A=[20−13],B=[−415−2]?
Explanation: This problem asks for matrix addition A + B. To add matrices, we add corresponding entries: (2) + (-4) = -2 for position (1,1), (-1) + (5) = 4 for position (1,2), (0) + (1) = 1 for position (2,1), and (3) + (-2) = 1 for position (2,2). The result is the matrix [[-2, 4], [1, 1]]. Note that some students might subtract instead of add, which would give a different result.
A transformation scales every coordinate by −3. If A=[−1024], what is −3A?
Explanation: The operation is scalar multiplication, where each entry of the matrix is multiplied by the scalar -3. For -3A, compute −3×−1=3 for the (1,1) entry; −3×2=−6 for (1,2); −3×0=0 for (2,1); and −3×4=−12 for (2,2). This scaling applies uniformly to every element, representing a transformation that enlarges and reflects the coordinates. The result is the matrix $$ \begin{bmatrix} 3 & -6 \ 0 & -12 \end{bmatrix}
A matrix A is used to encode a 2-variable system. If A=[02−31], what is −2A?
Explanation: The operation is scalar multiplication by -2, multiplying every entry of the matrix by this scalar. For -2A, (1,1): -20 = 0; (1,2): -2(-3) = 6; (2,1): -22 = -4; (2,2): -21 = -2. This reflects and scales the encoding matrix uniformly. The result is the matrix [[0, 6], [-4, -2]]. Choice B flips the sign of the (1,2) entry, possibly from mishandling the negative scalar.
What is A - B for matrices A=[0−342] and B=[−2310]?
Explanation: This question involves matrix subtraction, where we subtract corresponding entries of matrix B from matrix A. To compute A - B, we subtract each entry in position (i,j) of matrix B from the corresponding entry in position (i,j) of matrix A. For entry (1,1): 0 - (-2) = 2, for (1,2): 4 - 1 = 3, for (2,1): (-3) - 3 = -6, and for (2,2): 2 - 0 = 2. The result is the matrix [[2,3],[-6,2]].
If A=[041−3], what is −1A?
Explanation: This question involves scalar multiplication with k = -1, which negates each entry of the matrix. To compute -1A, we multiply every entry of matrix A by -1. For entry (1,1): (-1)(0) = 0, for (1,2): (-1)(1) = -1, for (2,1): (-1)(4) = -4, and for (2,2): (-1)(-3) = 3. The result is the matrix [[0,-1],[-4,3]].
What is A + B for matrices A=[1324] and B=[4231]?
Explanation: This question involves matrix addition, where we add corresponding entries of two matrices. To compute A + B, we add each entry in position (i,j) of matrix A to the corresponding entry in position (i,j) of matrix B. For the (1,1) entry: 1 + 4 = 5, for (1,2): 2 + 3 = 5, for (2,1): 3 + 2 = 5, and for (2,2): 4 + 1 = 5. The result is the matrix with all entries equal to 5.
A data table is doubled to reflect two weeks instead of one. If A=[5−3−12], what is 2A?
Explanation: This problem involves scalar multiplication of a matrix by 2, where we multiply each entry by 2. For matrix A = [[5, -1], [-3, 2]], we compute: entry (1,1): 2(5) = 10, entry (1,2): 2(-1) = -2, entry (2,1): 2(-3) = -6, entry (2,2): 2(2) = 4. The result is [[10, -2], [-6, 4]].
A 2D transformation is represented by the matrix [acbd]. What is the determinant of [35−21]?
Explanation: This problem asks for the determinant of a 2×2 matrix. For a matrix [[a, b], [c, d]], the determinant is ad - bc. For the matrix [[3, -2], [5, 1]], we compute: determinant = (3)(1) - (-2)(5) = 3 + 10 = 13. The result is 13.
A system updates a state vector by multiplying matrices. Which of the following is the product AB if A=[20−13] and B=[−214−1]?
Explanation: This problem requires matrix multiplication AB, where we compute row × column dot products. For A = [[2, -1], [0, 3]] and B = [[-2, 4], [1, -1]], entry (1,1) = (2)(-2) + (-1)(1) = -5, entry (1,2) = (2)(4) + (-1)(-1) = 9, entry (2,1) = (0)(-2) + (3)(1) = 3, entry (2,2) = (0)(4) + (3)(-1) = -3. The result is [[-5, 9], [3, -3]].
A robotics team scales a transformation matrix A=[[−2,3],[1,0]] by a factor of k=−3. What is kA?
Explanation: This is scalar multiplication of a matrix A by a scalar k = -3. To perform scalar multiplication, multiply each entry of the matrix by the scalar: for (1,1), -3 × -2 = 6; for (1,2), -3 × 3 = -9; for (2,1), -3 × 1 = -3; and for (2,2), -3 × 0 = 0. This scales every element uniformly. The resulting matrix is [[6, -9], [-3, 0]]. Choice A might come from forgetting the negative sign in the scalar.