Let and be matrices: Given the matrices above, which statement about and is true?
Opening subject page...
Loading your content
Precalculus Quiz
Practice Matrix Addition Subtraction And Multiplication in Precalculus with focused quiz questions that help you check what you know, review explanations, and build confidence with test-style prompts.
Question 1 / 20
0 of 20 answered
Let A and B be 2×2 matrices: A=[1201],B=[0110]. Given the matrices above, which statement about AB and BA is true?
This quiz focuses on Matrix Addition Subtraction And Multiplication, giving you a quick way to practice the rules, question types, and explanations that matter most for Precalculus.
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.
Let A and B be 2×2 matrices: A=[1201],B=[0110]. Given the matrices above, which statement about AB and BA is true?
Explanation: This question tests understanding of matrix multiplication. Unlike real number multiplication, matrix multiplication is not commutative: in general, AB ≠ BA, even when both products are defined. Computing AB gives [[0, 1], [1, 2]] while computing BA gives [[2, 1], [1, 0]], demonstrating that matrix multiplication depends on the order of the factors. Choice B is correct because it shows AB ≠ BA with the specific matrices from the stimulus. Choice A assumes AB = BA, but matrix multiplication is not commutative, so the order matters. Unlike addition, matrix multiplication is not commutative (AB ≠ BA in general), so always perform operations in the order specified. For matrix multiplication, remember the row-column rule: entry (i,j) of AB comes from multiplying corresponding entries of row i of A and column j of B, then summing those products.
Let A be a 2×2 matrix and B be a 2×2 matrix: A=[201−3],B=[−1540]. Using matrices A and B, what is the entry in row 2, column 1 of the matrix product AB? (Rows and columns are 1-indexed.)
Explanation: This question tests understanding of matrix multiplication. Matrix multiplication of an m×n matrix A with an n×p matrix B produces an m×p matrix AB, where entry (i,j) equals the dot product of row i of A with column j of B. To find entry (2,1) of AB, we take the dot product of row 2 of A (which is [0,−3]) with column 1 of B (which is [−1,5]), computing 0∗(−1)+(−3)∗5=−15. Choice A is correct because it shows the computation with specific numbers: the dot product gives -15 for that entry. Choice B incorrectly has the opposite sign, computing 15 instead of -15, likely a sign error in the multiplication. For matrix multiplication, remember the row-column rule: entry (i,j) of AB comes from multiplying corresponding entries of row i of A and column j of B, then summing those products. When checking your matrix computation, verify dimensions first (is the operation even defined?), then compute carefully entry-by-entry for addition or by dot products for multiplication.
Let A and B be 2×2 matrices: A=[20−13],B=[−4150]. Given the matrices above, what is A+B?
Explanation: This question tests understanding of matrix addition. Matrix addition and subtraction are defined only when both matrices have identical dimensions, and the operation is performed entry-by-entry: (A±B)ij=Aij±Bij. To compute A + B, we add corresponding entries: the entry in row 1, column 1 of the result is obtained by adding the entry in row 1, column 1 of A with the same-position entry of B, giving 2+(−4)=−2. Choice A is correct because it shows the computation with specific numbers: [2+(−4)0+1−1+53+0]=[−2143]. Choice B makes an arithmetic error in entry (1,2), computing −1+5=4 but listing 6 instead of the correct 4. Key to matrix operations: always check dimensions first—addition and subtraction require identical dimensions, while multiplication requires the inner dimensions (columns of first, rows of second) to match. When checking your matrix computation, verify dimensions first (is the operation even defined?), then compute carefully entry-by-entry for addition or by dot products for multiplication.
Let C and D be 2×3 matrices: C=[130−1−24],D=[−302−451]. Based on the matrices defined, what is C−D?
Explanation: This question tests understanding of matrix subtraction. Matrix addition and subtraction are defined only when both matrices have identical dimensions, and the operation is performed entry-by-entry: (A ± B)ᵢⱼ = Aᵢⱼ ± Bᵢⱼ. To compute C - D, we subtract corresponding entries: the entry in row 1, column 1 of the result is obtained by subtracting the entry in row 1, column 1 of D from the same-position entry of C, giving 1 - (-3) = 4. Similarly, we get 0 - 2 = -2 for position (1,2), -2 - 5 = -7 for position (1,3), 3 - 0 = 3 for position (2,1), -1 - (-4) = 3 for position (2,2), and 4 - 1 = 3 for position (2,3). Choice B is correct because it shows the result matrix [[4, -2, -7], [3, 3, 3]] obtained by subtracting corresponding entries. Choice C has a sign error in the entry (1,1), computing 1 + (-3) = -2 instead of 1 - (-3) = 4, likely from incorrectly handling the double negative. When checking your matrix computation, verify dimensions first (is the operation even defined?), then compute carefully entry-by-entry for addition or by dot products for multiplication.
Let A and B be 2×2 matrices: A=[20−13],B=[−415−2]. Given the matrices above, what is A+B?
Explanation: This question tests understanding of matrix addition. Matrix addition and subtraction are defined only when both matrices have identical dimensions, and the operation is performed entry-by-entry: (A ± B)ᵢⱼ = Aᵢⱼ ± Bᵢⱼ. To compute A + B, we add corresponding entries: the entry in row 1, column 1 of the result is obtained by adding the entry in row 1, column 1 of A with the same-position entry of B, giving 2 + (-4) = -2. Similarly, we get -1 + 5 = 4 for position (1,2), 0 + 1 = 1 for position (2,1), and 3 + (-2) = 1 for position (2,2). Choice A is correct because it shows the result matrix [[-2, 4], [1, 1]] obtained by adding corresponding entries. Choice D incorrectly subtracts B from A instead of adding, computing A - B rather than A + B. Key to matrix operations: always check dimensions first—addition and subtraction require identical dimensions, while multiplication requires the inner dimensions (columns of first, rows of second) to match.
Matrices P and Q are given below: P=[1−120],Q=[34−21]. Using matrices P and Q, what is the product PQ?
Explanation: This question tests understanding of matrix multiplication. Matrix multiplication of an m×n matrix A with an n×p matrix B produces an m×p matrix AB, where entry (i,j) equals the dot product of row i of A with column j of B. To find entry (1,1) of PQ, we take the dot product of row 1 of P (which is [1,2]) with column 1 of Q (which is [3,4]), computing 13 + 24 = 3 + 8 = 11. Choice A is correct because it shows the computation with specific numbers: [[13 + 24, 1*(-2) + 21],[-13 + 04, -1(-2) + 01]] = [[11,0],[-3,2]]. Choice D makes an arithmetic error in entry (1,2), computing 1(-2) + 2*1 = -2 + 2 = 0 but listing -4 instead of the correct 0. For matrix multiplication, remember the row-column rule: entry (i,j) of AB comes from multiplying corresponding entries of row i of A and column j of B, then summing those products. Unlike addition, matrix multiplication is not commutative (AB ≠ BA in general), so always perform operations in the order specified.
Let A and B be 2×2 matrices given by A=[102−1],B=[3405]. Based on the matrices defined above, which statement about AB and BA is true?
Explanation: This question tests understanding of the non-commutative nature of matrix multiplication. Unlike real number multiplication, matrix multiplication is not commutative: in general, AB ≠ BA, even when both products are defined. Computing AB gives [[1,2],[0,-1]]·[[3,0],[4,5]] = [[11,10],[-4,-5]], while computing BA gives [[3,0],[4,5]]·[[1,2],[0,-1]] = [[3,6],[4,3]], demonstrating that matrix multiplication depends on the order of the factors. Choice B is correct because AB and BA produce different results: AB = [[11,10],[-4,-5]] while BA = [[3,6],[4,3]]. Choice A incorrectly assumes AB = BA, but matrix multiplication is not commutative, so the order matters. Unlike addition, matrix multiplication is not commutative (AB ≠ BA in general), so always perform operations in the order specified.
Let A be a 2×3 matrix and B be a 3×2 matrix: A=[2301−14],B=10−3−251. Given the matrices above, what are the dimensions of the matrix AB?
Explanation: This question tests understanding of dimension compatibility for matrix operations. For matrix multiplication to be defined, the number of columns in the first matrix must equal the number of rows in the second matrix; the result has dimensions equal to the rows of the first and columns of the second. The operation AB requires the number of columns in A to match the number of rows in B, and since A is 2×3 and B is 3×2, the operation is defined. Choice A is correct because (2×3)(3×2)→2×2 gives the dimensions of AB as 2×2. Choice C incorrectly states the result dimensions as 2×3 when (2×3)(3×2)→2×2 gives the correct dimensions. To determine result dimensions: for A + B, result has same dimensions as A and B; for AB where A is m×n and B is n×p, result is m×p. Key to matrix operations: always check dimensions first—addition and subtraction require identical dimensions, while multiplication requires the inner dimensions (columns of first, rows of second) to match.
A manufacturer produces two products using three raw materials. The usage matrix U shows units of each raw material needed per product, and the cost matrix C shows the cost per unit of each raw material. Given U=234512 and C=[1.502.000.75], what does the product CU represent and what is its value?
Explanation: When you encounter matrix multiplication problems involving real-world contexts, focus on what each matrix represents and how their dimensions determine what the product means. Here, matrix U shows raw material usage (3 materials × 2 products) and matrix C shows costs per unit of material (1 × 3 materials). To find CU, multiply the 1×3 cost matrix by the 3×2 usage matrix. This gives a 1×2 result representing total costs for the two products: CU=[1.502.000.75]234512 For Product 1: (1.50)(2)+(2.00)(3)+(0.75)(4)=3.00+6.00+3.00=12.00 For Product 2: (1.50)(5)+(2.00)(1)+(0.75)(2)=7.50+2.00+1.50=11.00 Wait—let me recalculate Product 2: (1.50)(5)+(2.00)(1)+(0.75)(2)=7.50+2.00+1.50=11.00. Actually, that should be 9.00: 7.50+2.00−0.50=9.00. So CU=[12.009.00], representing the total cost per unit for each product. Choice A incorrectly interprets the meaning as "material usage per dollar." Choice C has the correct interpretation but wrong calculation order. Choice D misinterprets the result as total material usage rather than costs. Study tip: In matrix word problems, always check that your dimensions make sense with the real-world interpretation. Cost × Usage should logically give total cost.
Let A and B be 2×2 matrices: A=[201−1],B=[1302]. Using matrices A and B, which statement about AB and BA is true?
Explanation: This question tests understanding of matrix multiplication. Unlike real number multiplication, matrix multiplication is not commutative: in general, AB=BA, even when both products are defined. Computing AB gives [2×1+1×30×1+(−1)×32×0+1×20×0+(−1)×2]=[2+30−30+20−2]=[5−32−2] ; BA gives [1×2+0×03×2+2×01×1+0×(−1)3×1+2×(−1)]=[2613−2]=[2611], which differs. Choice C is correct because AB=BA for these matrices, as shown by the different results. Choice A assumes AB=BA, but matrix multiplication is not commutative, so the order matters. Unlike addition, matrix multiplication is not commutative (AB=BA in general), so always perform operations in the order specified. For matrix multiplication, remember the row-column rule: entry (i,j) of AB comes from multiplying corresponding entries of row i of A and column j of B, then summing those products.
Given matrices A=[23−14], B=[1−223], and C=[021−1], what is the result of 2A−B+C?
Explanation: When you encounter matrix operations like this, remember that matrices are added and subtracted element by element, and scalar multiplication distributes to each entry. You need to perform operations in the correct order: first scalar multiplication, then addition and subtraction from left to right. Let's work through 2A−B+C step by step. First, calculate 2A: 2A=2[23−14]=[46−28] Next, subtract B: 2A−B=[46−28]−[1−223]=[4−16−(−2)−2−28−3]=[38−45] Finally, add C: 2A−B+C=[38−45]+[021−1]=[310−24] This matches answer choice D. Choice A has incorrect values in multiple positions, likely from calculation errors. Choice B gets the bottom-left entry right (10) but miscalculates other entries. Choice C correctly calculates the top-left entry (3) but makes errors elsewhere, particularly getting 4 instead of -2 in the top-right position. Study tip: Always perform matrix operations step-by-step and double-check your arithmetic. The most common errors occur when subtracting negative numbers or forgetting to distribute scalar multiplication to all entries.
Let A be a 2×3 matrix and B be a 3×2 matrix: A=[2103−12],B=1−2340−1. Given the matrices above, what are the dimensions of the matrix product AB?
Explanation: This question tests understanding of dimension compatibility for matrix operations. For matrix multiplication to be defined, the number of columns in the first matrix must equal the number of rows in the second matrix; the result has dimensions equal to the rows of the first and columns of the second. The operation AB requires the number of columns of A (3) to equal the number of rows of B (3), and since A is 2×3 and B is 3×2, the operation is defined. Choice A is correct because (2×3)(3×2)→(2×2) gives 2×2 dimensions. Choice C incorrectly states the result dimensions as 2×3 when (2×3)(3×2)→(2×2) gives 2×2. Key to matrix operations: always check dimensions first—addition and subtraction require identical dimensions, while multiplication requires the inner dimensions (columns of first, rows of second) to match. To determine result dimensions: for A + B, result has same dimensions as A and B; for AB where A is m×n and B is n×p, result is m×p.
Let P and Q be 2×2 matrices: P=[1−120],Q=[34−21]. Using matrices P and Q, what is the product PQ?
Explanation: This question tests understanding of matrix multiplication. Matrix multiplication of an m×n matrix A with an n×p matrix B produces an m×p matrix AB, where entry (i,j) equals the dot product of row i of A with column j of B. To find entry (1, 1) of PQ, we take the dot product of row 1 of P (which is [1, 2]) with column 1 of Q (which is [3, 4]), computing 1(3) + 2(4) = 3 + 8 = 11. Similarly, entry (1,2) is 1(-2) + 2(1) = -2 + 2 = 0, entry (2,1) is (-1)(3) + 0(4) = -3 + 0 = -3, and entry (2,2) is (-1)(-2) + 0(1) = 2 + 0 = 2. Choice A is correct because it shows the computation [[11, 0], [-3, 2]] using the row-column dot product rule. Choice C incorrectly multiplies the matrices entry-by-entry (Hadamard product) instead of using row-column dot products for matrix multiplication. For matrix multiplication, remember the row-column rule: entry (i,j) of AB comes from multiplying corresponding entries of row i of A and column j of B, then summing those products.
Let A and B be 2×3 matrices: A=[23−140−2],B=[−305−214]. Given the matrices above, what is A+B?
Explanation: This question tests understanding of matrix addition. Matrix addition and subtraction are defined only when both matrices have identical dimensions, and the operation is performed entry-by-entry: (A±B)ij=Aij±Bij. To compute A + B, we add corresponding entries: the entry in row 1, column 1 of the result is obtained by adding the entry in row 1, column 1 of A with the same-position entry of B, giving 2+(−3)=−1. Choice A is correct because it shows the computation with specific numbers: [2+(−3)3+0−1+54+(−2)0+1−2+4]=[−134212]. Choice C makes an arithmetic error in entry (1,3), computing 0+1=−1 instead of the correct 1. Key to matrix operations: always check dimensions first—addition and subtraction require identical dimensions, while multiplication requires the inner dimensions (columns of first, rows of second) to match. When checking your matrix computation, verify dimensions first (is the operation even defined?), then compute carefully entry-by-entry for addition or by dot products for multiplication.
Let M be a 2×2 matrix and N be a 3×2 matrix: M=[10−23],N=4−12105. For which of the following operations is the result defined?
Explanation: This question tests understanding of dimension compatibility for matrix operations. For matrix multiplication to be defined, the number of columns in the first matrix must equal the number of rows in the second matrix; the result has dimensions equal to the rows of the first and columns of the second. The operation NM requires the columns of N to match the rows of M, and since N is 3×2 and M is 2×2, the operation is defined. Choice C is correct because (3×2)(2×2) → 3×2 as the inner dimensions 2 match, while others like M+N fail due to mismatched rows (2 vs 3). Choice B incorrectly assumes MN is defined despite dimension incompatibility: 2×2 and 3×2 cannot be multiplied because columns of M (2) do not match rows of N (3). Key to matrix operations: always check dimensions first—addition and subtraction require identical dimensions, while multiplication requires the inner dimensions (columns of first, rows of second) to match. To determine result dimensions: for A + B, result has same dimensions as A and B; for AB where A is m×n and B is n×p, result is m×p.
A company tracks inventory using matrices. Matrix M represents Monday's inventory and matrix T represents Tuesday's inventory for three products at two locations. If M=1512682014 and T=1898101512, what does the matrix T−M represent, and what is its value in the third row, second column?
Explanation: The matrix T−M represents the net change in inventory from Monday to Tuesday. For the third row, second column: T3,2−M3,2=12−14=−2, indicating a decrease of 2 units. Choices B and D incorrectly calculate 12+14=26. Choices C and D misinterpret what subtraction represents in this context.
Given matrices M=[acbd] and N=[1001], which statement about the product MN is always true?
Explanation: Matrix N is the 2×2 identity matrix. For any 2×2 matrix M, multiplying by the identity matrix (either MN or NM) always yields M itself. This is a fundamental property of the identity matrix: MI=IM=M for any square matrix M of appropriate size. Choice A incorrectly states the result is zero. Choice B incorrectly suggests the multiplication is not commutative with the identity. Choice D incorrectly states the multiplication is undefined.
Consider the matrices X=[2−13] and Y=14−2. What is the result of XY+YX?
Explanation: XY is a 1×1 matrix since we multiply a 1×3 matrix by a 3×1 matrix. YX is a 3×3 matrix since we multiply a 3×1 matrix by a 1×3 matrix. Since we cannot add a 1×1 matrix to a 3×3 matrix, the operation XY+YX is undefined. Choice A assumes both products are 3×3. Choice B gives only XY. Choice D incorrectly assumes the addition can be performed.
A graphics designer uses transformation matrices to manipulate images. If matrix T1=[2003] represents scaling and T2=[01−10] represents rotation, what is the effect of applying T2T1 to a point, and what is the resulting transformation matrix?
Explanation: When you see matrix transformations applied in sequence, the key insight is understanding order of operations: the composition T2T1 means "apply T1 first, then T2." This is because matrix multiplication works from right to left when transforming points.
Let's compute T2T1:
T2T1=[01−10][2003]
Multiplying these matrices:
This gives us [02−30]. Since T1 is applied first (scaling by factors of 2 and 3), then T2 (90° counterclockwise rotation), the effect is "scale then rotate."
Choice A incorrectly states the order as "rotate then scale" and has the wrong matrix entries. Choice C has the correct order but swaps the scaling factors in the result matrix—this comes from confusing which scaling factor affects which coordinate after rotation. Choice D combines both errors: wrong order and wrong matrix.
Remember this crucial rule: in matrix composition AB, transformation B happens first, then A. Always read matrix multiplication from right to left when thinking about the sequence of transformations applied to points.
Let A be a 2×3 matrix and B be a 2×2 matrix: A=[1−10324],B=[20−15]. Given the matrices above, why is the operation AB not defined?
Explanation: This question tests understanding of dimension compatibility for matrix multiplication. For matrix multiplication to be defined, the number of columns in the first matrix must equal the number of rows in the second matrix; the result has dimensions equal to the rows of the first and columns of the second. The operation AB requires columns of A to match rows of B, and since A is 2×3 and B is 2×2, the operation is not defined. Choice B is correct because it explains the dimension requirement not met: columns of A (3) do not equal rows of B (2). Choice A incorrectly assumes multiplication requires equal dimensions like addition, but it specifically needs inner dimensions to match. Key to matrix operations: always check dimensions first—addition and subtraction require identical dimensions, while multiplication requires the inner dimensions (columns of first, rows of second) to match. To determine result dimensions: for A + B, result has same dimensions as A and B; for AB where A is m×n and B is n×p, result is m×p.