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}
Question 11
What is A+B for matrices A and B given by A=[20−13],B=[−415−2]?
- [−2141] (correct answer)
- [−2−1−65]
- [−805−6]
- [6−1−65]
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.
Question 12
A transformation scales every coordinate by −3. If A=[−1024], what is −3A?
- [30−6−12] (correct answer)
- [−30612]
- [30−1−12]
- [10−2−4]
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}
Question 13
A matrix A is used to encode a 2-variable system. If A=[02−31], what is −2A?
- [0−4−1−2]
- [0−4−6−2]
- [0462]
- [0−46−2] (correct answer)
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.
Question 14
What is A - B for matrices A=[0−342] and B=[−2310]?
- [2−632] (correct answer)
- [2−630]
- [0052]
- [0042]
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]].
Question 15
If A=[041−3], what is −1A?
- [04−1−3]
- [041−3]
- [0−413]
- [0−4−13] (correct answer)
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]].
Question 16
What is A + B for matrices A=[1324] and B=[4231]?
- [4224]
- [3553]
- [5335]
- [5555] (correct answer)
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.
Question 17
A data table is doubled to reflect two weeks instead of one. If A=[5−3−12], what is 2A?
- [10624]
- [7−114]
- [259−24]
- [10−6−24] (correct answer)
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]].
Question 18
A 2D transformation is represented by the matrix [acbd]. What is the determinant of [35−21]?
- 7
- −13
- 13 (correct answer)
- −7
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.
Question 19
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]?
- [−339−3]
- [−539−3] (correct answer)
- [−538−3]
- [−40−4−3]
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]].
Question 20
A robotics team scales a transformation matrix A=[[−2,3],[1,0]] by a factor of k=−3. What is kA?
- [[−6,−9],[3,0]]
- [[−6,9],[3,0]]
- [[6,−9],[−3,0]] (correct answer)
- [[6,9],[−3,0]]
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.