All questions
Question 1
A shear transformation is given by H=(1021). What is the image of the point (1,3) under H?
- (7,3) (correct answer)
- (3,7)
- (1,5)
- (5,1)
Explanation: This question tests your ability to use 2×2 matrices to represent and perform plane transformations (rotations, reflections, scaling) by multiplying transformation matrices with point coordinate vectors. A 2×2 matrix can represent a linear transformation of the plane: to transform a point (x,y), write it as column vector [x;y] and multiply by transformation matrix T=(acbd) using matrix multiplication: T[x;y]=(acbd)[x;y]=[ax+by;cx+dy]=[x′;y′] where (x′,y′) is the transformed point. Common transformation matrices include: ROTATION by angle θ counterclockwise = (cos(θ)sin(θ)−sin(θ)cos(θ)) (example: 90° rotation uses θ=90° giving (01−10) since cos(90°)=0 and sin(90°)=1), REFLECTION across x-axis = (100−1) (keeps x same, negates y), REFLECTION across y-axis = (−1001) (negates x, keeps y same), SCALING by factor k = (k00k) (multiplies both coordinates by k, enlarges by factor k). COMPOSITIONS of transformations: multiply matrices in reverse order (rightmost applied first)—to rotate then scale, compute (scaling matrix)·(rotation matrix). The resulting product matrix represents the combined transformation in one step! The shear matrix H=(1021) applied to (1,3) gives x′=1⋅1+2⋅3=7, y′=0⋅1+1⋅3=3, shifting x based on y while keeping y fixed, characteristic of a horizontal shear. Choice A correctly calculates this, adding twice the y-value to x for the shear effect. Distractors like choice B might swap coordinates or ignore the off-diagonal term, but remember off-diagonals introduce dependence between x and y in transformations like shears. Matrix multiplication for transformations: Given transformation matrix (acbd) and point (x,y): (1) Write point as column vector [x;y]. (2) Multiply: first row of matrix times vector gives x'-coordinate = a⋅x+b⋅y. Second row times vector gives y'-coordinate = c⋅x+d⋅y. (3) Result is transformed point (x′,y′)=(ax+by,cx+dy). Example: (01−10) applied to (5,3): x′=0⋅5+(−1)⋅3=−3, y′=1⋅5+0⋅3=5, so image is (−3,5). That's a 90° counterclockwise rotation! Identifying transformations from matrices: ROTATION matrices have form (cos(θ)sin(θ)−sin(θ)cos(θ))—look for this pattern with cos and -sin in first row, sin and cos in second row. Common: (01−10) is 90° rotation, (−100−1) is 180° rotation. REFLECTION matrices have form (±100±1) with exactly one negative—(100−1) reflects across x-axis (y negated), (−1001) reflects across y-axis (x negated). SCALING matrices have equal diagonal entries (k00k)—both coordinates multiplied by same k, or different entries (a00b) for non-uniform scaling. Pattern recognition allows identification without calculation! Checking: after transforming point, verify result makes sense geometrically (rotation should preserve distance from origin, reflection should mirror across axis, scaling should change distances proportionally). Impressive work with shears—visualize how shapes distort to understand better! Question 2
Which matrix represents a rotation of 180∘ about the origin?
- (01−10)
- (−100−1) (correct answer)
- (100−1)
- (−1001)
Explanation: This question tests your ability to use 2×2 matrices to represent and perform plane transformations (rotations, reflections, scaling) by multiplying transformation matrices with point coordinate vectors. A 2×2 matrix can represent a linear transformation of the plane: to transform a point (x, y), write it as column vector [x; y] and multiply by transformation matrix T = [a b; c d] using matrix multiplication: T[x; y] = [a b; c d][x; y] = [ax+by; cx+dy] = [x'; y'] where (x', y') is the transformed point. Common transformation matrices include: ROTATION by angle θ counterclockwise = [cos(θ) -sin(θ); sin(θ) cos(θ)] (example: 90° rotation uses θ=90° giving [0 -1; 1 0] since cos(90°)=0 and sin(90°)=1), REFLECTION across x-axis = [1 0; 0 -1] (keeps x same, negates y), REFLECTION across y-axis = [-1 0; 0 1] (negates x, keeps y same), SCALING by factor k = [k 0; 0 k] (multiplies both coordinates by k, enlarges by factor k). COMPOSITIONS of transformations: multiply matrices in reverse order (rightmost applied first)—to rotate then scale, compute (scaling matrix)·(rotation matrix). The resulting product matrix represents the combined transformation in one step! A 180° rotation matrix is [-1 0; 0 -1], as it matches [cos(180°) -sin(180°); sin(180°) cos(180°)] = [-1 0; 0 -1], negating both coordinates to flip the point through the origin. Choice B correctly identifies this matrix by recognizing the equal negative diagonals and zero off-diagonals, distinct from reflections or 90° rotations. Distractors like choice A might confuse with 90° rotation, but note the off-diagonal signs and values differ—use the general rotation formula to verify angles. Matrix multiplication for transformations: Given transformation matrix [a b; c d] and point (x, y): (1) Write point as column vector [x; y]. (2) Multiply: first row of matrix times vector gives x'-coordinate = a·x + b·y. Second row times vector gives y'-coordinate = c·x + d·y. (3) Result is transformed point (x', y') = (ax+by, cx+dy). Example: [0 -1; 1 0] applied to (5, 3): x' = 0·5 + (-1)·3 = -3, y' = 1·5 + 0·3 = 5, so image is (-3, 5). That's a 90° counterclockwise rotation! Identifying transformations from matrices: ROTATION matrices have form [cos(θ) -sin(θ); sin(θ) cos(θ)]—look for this pattern with cos and -sin in first row, sin and cos in second row. Common: [0 -1; 1 0] is 90° rotation, [-1 0; 0 -1] is 180° rotation. REFLECTION matrices have form [±1 0; 0 ±1] with exactly one negative—[1 0; 0 -1] reflects across x-axis (y negated), [-1 0; 0 1] reflects across y-axis (x negated). SCALING matrices have equal diagonal entries [k 0; 0 k]—both coordinates multiplied by same k, or different entries [a 0; 0 b] for non-uniform scaling. Pattern recognition allows identification without calculation! Checking: after transforming point, verify result makes sense geometrically (rotation should preserve distance from origin, reflection should mirror across axis, scaling should change distances proportionally). Wonderful progress on rotations—experiment with different angles!
Question 3
Which matrix represents a 180∘ rotation about the origin?
- [01−10]
- [−100−1] (correct answer)
- [100−1]
- [−1001]
Explanation: This question tests your ability to use 2×2 matrices to represent and perform plane transformations (rotations, reflections, scaling) by multiplying transformation matrices with point coordinate vectors. A 2×2 matrix can represent a linear transformation of the plane: to transform a point (x, y), write it as column vector [x; y] and multiply by transformation matrix T = [a b; c d] using matrix multiplication: T[x; y] = [a b; c d][x; y] = [ax+by; cx+dy] = [x'; y'] where (x', y') is the transformed point. Common transformation matrices include: ROTATION by angle θ counterclockwise = [cos(θ) -sin(θ); sin(θ) cos(θ)] (example: 90° rotation uses θ=90° giving [0 -1; 1 0] since cos(90°)=0 and sin(90°)=1), REFLECTION across x-axis = [1 0; 0 -1] (keeps x same, negates y), REFLECTION across y-axis = [-1 0; 0 1] (negates x, keeps y same), SCALING by factor k = [k 0; 0 k] (multiplies both coordinates by k, enlarges by factor k). COMPOSITIONS of transformations: multiply matrices in reverse order (rightmost applied first)—to rotate then scale, compute (scaling matrix)·(rotation matrix). The resulting product matrix represents the combined transformation in one step! A 180° rotation transforms (x, y) to (-x, -y), matching the matrix [-1 0; 0 -1] from the rotation formula with θ=180°. Choice B correctly identifies this matrix by recognizing the pattern of -1 on both diagonals. A distractor like choice A might confuse it with 90° rotation, which has off-diagonal entries. Matrix multiplication for transformations: Given transformation matrix [a b; c d] and point (x, y): (1) Write point as column vector [x; y]. (2) Multiply: first row of matrix times vector gives x'-coordinate = a·x + b·y. Second row times vector gives y'-coordinate = c·x + d·y. (3) Result is transformed point (x', y') = (ax+by, cx+dy). Example: [0 -1; 1 0] applied to (5, 3): x' = 0·5 + (-1)·3 = -3, y' = 1·5 + 0·3 = 5, so image is (-3, 5). That's a 90° counterclockwise rotation! Identifying transformations from matrices: ROTATION matrices have form [cos(θ) -sin(θ); sin(θ) cos(θ)]—look for this pattern with cos and -sin in first row, sin and cos in second row. Common: [0 -1; 1 0] is 90° rotation, [-1 0; 0 -1] is 180° rotation. REFLECTION matrices have form [±1 0; 0 ±1] with exactly one negative—[1 0; 0 -1] reflects across x-axis (y negated), [-1 0; 0 1] reflects across y-axis (x negated). SCALING matrices have equal diagonal entries [k 0; 0 k]—both coordinates multiplied by same k, or different entries [a 0; 0 b] for non-uniform scaling. Pattern recognition allows identification without calculation! Checking: after transforming point, verify result makes sense geometrically (rotation should preserve distance from origin, reflection should mirror across axis, scaling should change distances proportionally). Well done spotting the rotation matrix!
Question 4
Two transformation matrices A=(2011) and $$B = \begin{pmatrix} 1 & 0 \ -1 & 2 \end{pmatrix}
- 14 units² because both matrices have the same determinant value (correct answer)
- 7 units² because matrix B has half the area scaling effect of matrix A
- 28 units² because matrix B has twice the area scaling effect of matrix A
- 21 units² because the area scaling effects have a 3:2 ratio favoring matrix B
Explanation: det(A) = 2×1 - 1×0 = 2, and det(B) = 1×2 - 0×(-1) = 2. Both have the same area scaling factor of 2, so they produce equal areas when applied to the same original region. Choices B, C, and D incorrectly calculate the determinants or their relationship.
Question 5
Triangle ABC has vertices A(1,1), B(3,1), and C(2,4). It is transformed by the matrix K=(2002). What are the coordinates of C′ (the image of C)?
- (4,4)
- (4,8) (correct answer)
- (2,8)
- (1,2)
Explanation: This question tests your ability to use 2×2 matrices to represent and perform plane transformations (rotations, reflections, scaling) by multiplying transformation matrices with point coordinate vectors. A 2×2 matrix can represent a linear transformation of the plane: to transform a point (x, y), write it as column vector [x; y] and multiply by transformation matrix T = [a b; c d] using matrix multiplication: T[x; y] = [a b; c d][x; y] = [ax+by; cx+dy] = [x'; y'] where (x', y') is the transformed point. The matrix K = [2 0; 0 2] represents uniform scaling by factor 2. Applying this to vertex C(2, 4): K[2; 4] = [2 0; 0 2][2; 4] = [2·2 + 0·4; 0·2 + 2·4] = [4 + 0; 0 + 8] = [4; 8], giving C'(4, 8). Choice B correctly shows this result where both coordinates are doubled: x: 2 → 4 and y: 4 → 8. Choice A incorrectly has y' = 4 (not doubled), choice C incorrectly has x' = 2 (not doubled), and choice D shows the original point divided by 2 instead of multiplied. Matrix multiplication for transformations: SCALING matrices have equal diagonal entries [k 0; 0 k]—both coordinates multiplied by same k. The scaling transformation K = [2 0; 0 2] doubles all distances from the origin, enlarging the triangle by factor 2!
Question 6
Triangle △PQR has vertices P(1,1), Q(3,1), and R(2,3). A transformation is given by T=(2002). What are the coordinates of the image triangle △P′Q′R′?
- P′(2,2), Q′(6,2), R′(4,6) (correct answer)
- P′(2,2), Q′(5,2), R′(4,5)
- P′(21,21), Q′(23,21), R′(1,23)
- P′(−2,−2), Q′(−6,−2), R′(−4,−6)
Explanation: This question tests your ability to use 2×2 matrices to represent and perform plane transformations (rotations, reflections, scaling) by multiplying transformation matrices with point coordinate vectors. A 2×2 matrix can represent a linear transformation of the plane: to transform a point (x, y), write it as column vector [x; y] and multiply by transformation matrix T = [a b; c d] using matrix multiplication: T[x; y] = [a b; c d][x; y] = [ax+by; cx+dy] = [x'; y'] where (x', y') is the transformed point. The matrix T = [2 0; 0 2] uniformly scales by factor 2, so we apply it to each vertex: P'= T[1; 1] = [2·1; 2·1] = [2; 2], Q'= T[3; 1] = [2·3; 2·1] = [6; 2], R'= T[2; 3] = [2·2; 2·3] = [4; 6]. Choice A correctly shows P'(2,2), Q'(6,2), R'(4,6) as the scaled triangle with all distances from origin doubled. The transformation preserves the triangle's shape while doubling its size—each coordinate is multiplied by 2, making the image triangle similar to the original with scale factor 2. Matrix multiplication for transformations: Uniform scaling [2 0; 0 2] multiplies both coordinates by 2. For triangle vertices: P(1,1)→P'(2,2), Q(3,1)→Q'(6,2), R(2,3)→R'(4,6). The scaling preserves angles and ratios of distances, creating a similar triangle that's twice as large!
Question 7
A transformation matrix T=(2013) is applied to a triangle with vertices at (0,0), (2,0), and (0,1). What is the ratio of the area of the transformed triangle to the original triangle?
- 3:1
- 5:1
- 6:1 (correct answer)
- 7:1
Explanation: The ratio of areas under a linear transformation equals the absolute value of the determinant of the transformation matrix. For matrix T, det(T) = (2)(3) - (1)(0) = 6. Therefore, the area ratio is 6:1. Choice A uses only one diagonal element, choice B adds the matrix elements, and choice D uses the sum of all elements.
Question 8
Triangle ABC has vertices A(1,1), B(3,1), and C(2,3) on the coordinate plane. The triangle is transformed by S=(2002). Which set of vertices gives the image triangle A′B′C′?
- A′(2,2),B′(6,2),C′(4,6) (correct answer)
- A′(2,2),B′(5,2),C′(4,5)
- A′(21,21),B′(23,21),C′(1,23)
- A′(−2,−2),B′(−6,−2),C′(−4,−6)
Explanation: This question tests your ability to use 2×2 matrices to represent and perform plane transformations (rotations, reflections, scaling) by multiplying transformation matrices with point coordinate vectors. A 2×2 matrix can represent a linear transformation of the plane: to transform a point (x, y), write it as column vector [x;y] and multiply by transformation matrix T=[a b;c d] using matrix multiplication: T[x;y]=[a b;c d][x;y]=[ax+by;cx+dy]=[x′;y′] where (x′,y′) is the transformed point. Common transformation matrices include: ROTATION by angle θ counterclockwise = [cos(θ)−sin(θ);sin(θ) cos(θ)] (example: 90° rotation uses θ=90° giving [0 −1;1 0] since cos(90°)=0 and sin(90°)=1), REFLECTION across x-axis = [1 0;0 −1] (keeps x same, negates y), REFLECTION across y-axis = [−1 0;0 1] (negates x, keeps y same), SCALING by factor k = [k 0;0 k] (multiplies both coordinates by k, enlarges by factor k). Applying S=[2 0;0 2] to each vertex: A(1,1)→(2,2), B(3,1)→(6,2), C(2,3)→(4,6). Choice A correctly scales all vertices by factor 2. Distractors like choice C might use scaling by 1/2 instead, shrinking the triangle. Transform each point individually and plot to verify the shape enlarges proportionally—great job, you're getting stronger! Question 9
A transformation sends (xy)↦(x′y′)=(acbd)(xy). For the matrix M=(0110), which statement best describes the transformation?
- It reflects points across the line y=x (swaps x and y). (correct answer)
- It reflects points across the x-axis (negates y).
- It rotates points 90∘ counterclockwise about the origin.
- It scales all points by factor 2.
Explanation: This question tests your ability to use 2×2 matrices to represent and perform plane transformations (rotations, reflections, scaling) by multiplying transformation matrices with point coordinate vectors. A 2×2 matrix can represent a linear transformation of the plane: to transform a point (x, y), write it as column vector [x; y] and multiply by transformation matrix T = [a b; c d] using matrix multiplication: T[x; y] = [a b; c d][x; y] = [ax+by; cx+dy] = [x'; y'] where (x', y') is the transformed point. For matrix M = [0 1; 1 0], applying to point (x, y): M[x; y] = [0 1; 1 0][x; y] = [0·x + 1·y; 1·x + 0·y] = [y; x], which swaps the x and y coordinates—this is exactly reflection across the line y = x. Choice A correctly identifies this as reflection across the line y = x, where each point (x, y) maps to (y, x). Choice B (reflection across x-axis) would need [1 0; 0 -1], C (90° rotation) would need [0 -1; 1 0], and D (scaling by 2) would need [2 0; 0 2]. The matrix [0 1; 1 0] has 1's on the anti-diagonal and 0's on the main diagonal, creating the coordinate swap (x, y) → (y, x). This reflection across y = x mirrors points across the 45° line through the origin where x equals y!
Question 10
The matrix R=(cosθsinθ−sinθcosθ) represents a rotation. A triangle undergoes this transformation followed by scaling matrix $$
\begin{pmatrix} 2 & 0 \ 0 & 2 \end{pmatrix}
- 16 units² because rotation doubles area and scaling doubles it again
- 8 units² because the combined transformation has determinant 4 (correct answer)
- 4 units² because each transformation doubles the linear dimensions independently
- 32 units² because rotation matrices preserve area completely in all compositions
Explanation: Rotation matrices have determinant 1 (preserve area), and the scaling matrix has determinant 4. Combined determinant is 1×4=4, so original area = 32/4 = 8. Choice A incorrectly claims rotation doubles area, choice C confuses linear and area scaling, choice D ignores the scaling effect.
Question 11
A shear transformation S=(10k1) is applied to a parallelogram with base 4 and height 3. After transformation, one vertex moves from (2,1) to (5,1). What is the area of the transformed parallelogram?
- 12 units² because shear transformations preserve all area measurements (correct answer)
- 18 units² because the base increases proportionally with the vertex displacement
- 15 units² because the area scales by the amount of horizontal shear applied
- 21 units² because both base and height change under the shear transformation
Explanation: Shear transformations have determinant 1, so they preserve area regardless of the shear parameter k. The original area 4×3=12 remains unchanged. The vertex displacement helps find k=3, but doesn't affect area preservation. Choices B, C, and D incorrectly assume shear transformations change area.
Question 12
Which transformation is represented by the matrix $$T=\begin{pmatrix}1&0\0&-1\end{pmatrix}
- Reflection across the y-axis
- Rotation 90∘ counterclockwise about the origin
- Reflection across the x-axis (correct answer)
- Scaling by factor −1 in the x-direction only
Explanation: This question tests your ability to use 2×2 matrices to represent and perform plane transformations (rotations, reflections, scaling) by multiplying transformation matrices with point coordinate vectors. A 2×2 matrix can represent a linear transformation of the plane: to transform a point (x,y), write it as column vector [x;y] and multiply by transformation matrix T=(acbd) using matrix multiplication: T[x;y]=(acbd)[x;y]=[ax+by;cx+dy]=[x′;y′] where (x′,y′) is the transformed point. Common transformation matrices include: ROTATION by angle θ counterclockwise = (cos(θ)sin(θ)−sin(θ)cos(θ)) (example: 90∘ rotation uses θ=90∘ giving (01−10) since cos(90∘)=0 and sin(90∘)=1), REFLECTION across x-axis = (100−1) (keeps x same, negates y), REFLECTION across y-axis = (−1001) (negates x, keeps y same), SCALING by factor k = (k00k) (multiplies both coordinates by k, enlarges by factor k). COMPOSITIONS of transformations: multiply matrices in reverse order (rightmost applied first)—to rotate then scale, compute (scaling matrix)·(rotation matrix). The resulting product matrix represents the combined transformation in one step! Here, T=(100−1) applied to a general (x,y) gives (x,−y), which keeps x the same and negates y, matching a reflection across the x-axis. Choice C correctly identifies this as reflection across the x-axis based on the matrix entries where the y-component is negated while x remains unchanged. A distractor like choice A might confuse it with y-axis reflection, which would have (−1001) instead, so always check which diagonal entry is negative to distinguish axis reflections. Matrix multiplication for transformations: Given transformation matrix (acbd) and point (x,y): (1) Write point as column vector [x;y]. (2) Multiply: first row of matrix times vector gives x'-coordinate = a⋅x+b⋅y. Second row times vector gives y'-coordinate = c⋅x+d⋅y. (3) Result is transformed point (x′,y′)=(ax+by,cx+dy). Example: (01−10) applied to (5,3): x' = 0⋅5+(−1)⋅3=−3, y' = 1⋅5+0⋅3=5, so image is (−3,5). That's a 90∘ counterclockwise rotation! Identifying transformations from matrices: ROTATION matrices have form (cos(θ)sin(θ)−sin(θ)cos(θ))—look for this pattern with cos and -sin in first row, sin and cos in second row. Common: (01−10) is 90∘ rotation, (−100−1) is 180∘ rotation. REFLECTION matrices have form (±100±1) with exactly one negative—(100−1) reflects across x-axis (y negated), (−1001) reflects across y-axis (x negated). SCALING matrices have equal diagonal entries (k00k)—both coordinates multiplied by same k, or different entries (a00b) for non-uniform scaling. Pattern recognition allows identification without calculation! Checking: after transforming point, verify result makes sense geometrically (rotation should preserve distance from origin, reflection should mirror across axis, scaling should change distances proportionally). You're doing great—keep matching matrix patterns to transformation types! Question 13
A transformation matrix is M=(2001). What does M do to a point (x,y)?
- Doubles y and keeps x the same
- Reflects across the x-axis
- Doubles x and keeps y the same (correct answer)
- Scales both coordinates by 2
Explanation: This question tests your ability to use 2×2 matrices to represent and perform plane transformations (rotations, reflections, scaling) by multiplying transformation matrices with point coordinate vectors. A 2×2 matrix can represent a linear transformation of the plane: to transform a point (x,y), write it as column vector (xy) and multiply by transformation matrix T=(acbd) using matrix multiplication: T(xy)=(acbd)(xy)=(ax+bycx+dy)=(x′y′) where (x′,y′) is the transformed point. Common transformation matrices include: ROTATION by angle θ counterclockwise =(cos(θ)sin(θ)−sin(θ)cos(θ)) (example: 90∘ rotation uses θ=90∘ giving (01−10) since cos(90∘)=0 and sin(90∘)=1), REFLECTION across x-axis =(100−1) (keeps x same, negates y), REFLECTION across y-axis =(−1001) (negates x, keeps y same), SCALING by factor k =(k00k) (multiplies both coordinates by k, enlarges by factor k). COMPOSITIONS of transformations: multiply matrices in reverse order (rightmost applied first)—to rotate then scale, compute (scaling matrix)⋅(rotation matrix). The resulting product matrix represents the combined transformation in one step! The matrix M=(2001) transforms (x,y) to (2x,y), doubling the x-coordinate while leaving y unchanged, which is a non-uniform scaling in the x-direction. Choice C correctly captures this effect by analyzing the diagonal entries, where 2 scales x and 1 keeps y the same. Distractors like choice A might reverse the coordinates affected, but remember the top-left entry scales x and bottom-right scales y in diagonal matrices. Matrix multiplication for transformations: Given transformation matrix (acbd) and point (x,y): (1) Write point as column vector (xy). (2) Multiply: first row of matrix times vector gives x'-coordinate =a⋅x+b⋅y. Second row times vector gives y'-coordinate =c⋅x+d⋅y. (3) Result is transformed point (x′,y′)=(ax+by,cx+dy). Example: (01−10) applied to (5,3): x′=0⋅5+(−1)⋅3=−3, y′=1⋅5+0⋅3=5, so image is (−3,5). That's a 90∘ counterclockwise rotation! Identifying transformations from matrices: ROTATION matrices have form (cos(θ)sin(θ)−sin(θ)cos(θ))—look for this pattern with cos and -sin in first row, sin and cos in second row. Common: (01−10) is 90∘ rotation, (−100−1) is 180∘ rotation. REFLECTION matrices have form (±100±1) with exactly one negative—(100−1) reflects across x-axis (y negated), (−1001) reflects across y-axis (x negated). SCALING matrices have equal diagonal entries (k00k)—both coordinates multiplied by same k, or different entries (a00b) for non-uniform scaling. Pattern recognition allows identification without calculation! Checking: after transforming point, verify result makes sense geometrically (rotation should preserve distance from origin, reflection should mirror across axis, scaling should change distances proportionally). You're building strong skills in non-uniform transformations—keep going! Question 14
A scaling transformation multiplies both coordinates by 3. Which matrix represents this transformation?
- [1003]
- [3003] (correct answer)
- [0330]
- [3001]
Explanation: This question tests your ability to use 2×2 matrices to represent and perform plane transformations (rotations, reflections, scaling) by multiplying transformation matrices with point coordinate vectors. A 2×2 matrix can represent a linear transformation of the plane: to transform a point (x, y), write it as column vector [x; y] and multiply by transformation matrix T = [a b; c d] using matrix multiplication: T[x; y] = [a b; c d][x; y] = [ax+by; cx+dy] = [x'; y'] where (x', y') is the transformed point. Common transformation matrices include: ROTATION by angle θ counterclockwise = [cos(θ) -sin(θ); sin(θ) cos(θ)] (example: 90° rotation uses θ=90° giving [0 -1; 1 0] since cos(90°)=0 and sin(90°)=1), REFLECTION across x-axis = [1 0; 0 -1] (keeps x same, negates y), REFLECTION across y-axis = [-1 0; 0 1] (negates x, keeps y same), SCALING by factor k = [k 0; 0 k] (multiplies both coordinates by k, enlarges by factor k). COMPOSITIONS of transformations: multiply matrices in reverse order (rightmost applied first)—to rotate then scale, compute (scaling matrix)·(rotation matrix). The resulting product matrix represents the combined transformation in one step! Scaling both coordinates by 3 means multiplying x and y by 3, represented by the diagonal matrix with 3 on both diagonals. Choice B correctly identifies [3 0; 0 3] as the uniform scaling matrix by factor 3. A distractor like choice A might result from confusing uniform scaling with non-uniform, where only one coordinate is scaled by 3. Matrix multiplication for transformations: Given transformation matrix [a b; c d] and point (x, y): (1) Write point as column vector [x; y]. (2) Multiply: first row of matrix times vector gives x'-coordinate = a·x + b·y. Second row times vector gives y'-coordinate = c·x + d·y. (3) Result is transformed point (x', y') = (ax+by, cx+dy). Example: [0 -1; 1 0] applied to (5, 3): x' = 0·5 + (-1)·3 = -3, y' = 1·5 + 0·3 = 5, so image is (-3, 5). That's a 90° counterclockwise rotation! Identifying transformations from matrices: ROTATION matrices have form [cos(θ) -sin(θ); sin(θ) cos(θ)]—look for this pattern with cos and -sin in first row, sin and cos in second row. Common: [0 -1; 1 0] is 90° rotation, [-1 0; 0 -1] is 180° rotation. REFLECTION matrices have form [±1 0; 0 ±1] with exactly one negative—[1 0; 0 -1] reflects across x-axis (y negated), [-1 0; 0 1] reflects across y-axis (x negated). SCALING matrices have equal diagonal entries [k 0; 0 k]—both coordinates multiplied by same k, or different entries [a 0; 0 b] for non-uniform scaling. Pattern recognition allows identification without calculation! Checking: after transforming point, verify result makes sense geometrically (rotation should preserve distance from origin, reflection should mirror across axis, scaling should change distances proportionally). Excellent work recognizing scaling matrices!
Question 15
Let R=(01−10) (rotate 90∘ counterclockwise) and F=(100−1) (reflect across the x-axis). What is the matrix for "rotate first, then reflect," i.e., FR?
- (01−10)
- (0−1−10) (correct answer)
- (0−110)
- (0110)
Explanation: This question tests your ability to use 2×2 matrices to represent and perform plane transformations (rotations, reflections, scaling) by multiplying transformation matrices with point coordinate vectors. A 2×2 matrix can represent a linear transformation of the plane: to transform a point (x, y), write it as column vector [x; y] and multiply by transformation matrix T = [a b; c d] using matrix multiplication: T[x; y] = [a b; c d][x; y] = [ax+by; cx+dy] = [x'; y'] where (x', y') is the transformed point. To find "rotate first, then reflect," we compute F·R = [1 0; 0 -1]·[0 -1; 1 0] = [1·0 + 0·1, 1·(-1) + 0·0; 0·0 + (-1)·1, 0·(-1) + (-1)·0] = [0, -1; -1, 0], giving the matrix [0 -1; -1 0]. Choice B correctly shows [0 -1; -1 0] as the composition of rotating 90° counterclockwise then reflecting across the x-axis. This combined transformation takes (1, 0) to (0, 1) after rotation, then to (0, -1) after reflection; and takes (0, 1) to (-1, 0) after rotation, which stays at (-1, 0) after x-axis reflection. Matrix multiplication for transformations: For composition F·R, multiply [1 0; 0 -1]·[0 -1; 1 0]. First column: [1 0; 0 -1]·[0; 1] = [0; -1]. Second column: [1 0; 0 -1]·[-1; 0] = [-1; 0]. Result: [0 -1; -1 0]. The order matters—R·F would give a different result!
Question 16
Let R=(01−10) (rotate 90∘ counterclockwise) and S=(2002) (scale by 2). A point is first rotated by R and then scaled by S. What is the combined transformation matrix?
- (02−20) (correct answer)
- (01−10)
- (0−2−20)
- (02−10)
Explanation: This question tests your ability to use 2×2 matrices to represent and perform plane transformations (rotations, reflections, scaling) by multiplying transformation matrices with point coordinate vectors. A 2×2 matrix can represent a linear transformation of the plane: to transform a point (x, y), write it as column vector [x; y] and multiply by transformation matrix T = [a b; c d] using matrix multiplication: T[x; y] = [a b; c d][x; y] = [ax+by; cx+dy] = [x'; y'] where (x', y') is the transformed point. For composition of transformations, we multiply matrices in reverse order: if we first apply R then S, the combined matrix is S·R. Computing S·R = [2 0; 0 2]·[0 -1; 1 0] = [2·0 + 0·1, 2·(-1) + 0·0; 0·0 + 2·1, 0·(-1) + 2·0] = [0, -2; 2, 0] = [0 -2; 2 0]. Choice A correctly shows this combined transformation matrix [0 -2; 2 0]. Choice B shows just the rotation matrix without scaling, choice C has wrong sign in bottom-left entry, and choice D has inconsistent scaling factors. COMPOSITIONS of transformations: multiply matrices in reverse order (rightmost applied first)—to rotate then scale, compute (scaling matrix)·(rotation matrix). The combined matrix [0 -2; 2 0] rotates 90° counterclockwise AND scales by 2 in one step!
Question 17
A point S(3,2) is transformed by the matrix
T=(1021).
What are the coordinates of S′?
- (3,8)
- (7,2) (correct answer)
- (5,2)
- (7,5)
Explanation: This question tests your ability to use 2×2 matrices to represent and perform plane transformations (rotations, reflections, scaling) by multiplying transformation matrices with point coordinate vectors. A 2×2 matrix can represent a linear transformation of the plane: to transform a point (x, y), write it as column vector [x; y] and multiply by transformation matrix T = [a b; c d] using matrix multiplication: T[x; y] = [a b; c d][x; y] = [ax+by; cx+dy] = [x'; y'] where (x', y') is the transformed point. Common transformation matrices include: ROTATION by angle θ counterclockwise = [cos(θ) -sin(θ); sin(θ) cos(θ)] (example: 90° rotation uses θ=90° giving [0 -1; 1 0] since cos(90°)=0 and sin(90°)=1), REFLECTION across x-axis = [1 0; 0 -1] (keeps x same, negates y), REFLECTION across y-axis = [-1 0; 0 1] (negates x, keeps y same), SCALING by factor k = [k 0; 0 k] (multiplies both coordinates by k, enlarges by factor k). For S(3,2) and T=[1 2; 0 1], S' = [13 + 22; 03 + 12] = [7; 2], so (7,2)—this is a shear transformation. Choice B correctly applies the matrix multiplication to get (7,2). Distractors like choice A might ignore the off-diagonal term, giving (3,8) from a misread. Even for non-standard matrices, follow the same multiplication steps and check calculations—keep going, you're improving!
Question 18
A transformation is defined by A=[2001]. What does this transformation do to a point (x,y)?
- Reflects across the x-axis
- Doubles the x-coordinate and leaves the y-coordinate unchanged (correct answer)
- Doubles the y-coordinate and leaves the x-coordinate unchanged
- Scales both coordinates by 2
Explanation: This question tests your ability to use 2×2 matrices to represent and perform plane transformations (rotations, reflections, scaling) by multiplying transformation matrices with point coordinate vectors. A 2×2 matrix can represent a linear transformation of the plane: to transform a point (x,y), write it as column vector [xy] and multiply by transformation matrix T=[acbd] using matrix multiplication: T[xy]=[acbd][xy]=[ax+bycx+dy]=[x′y′] where (x′,y′) is the transformed point. Common transformation matrices include: ROTATION by angle θ counterclockwise = [cos(θ)sin(θ)−sin(θ)cos(θ)] (example: 90° rotation uses θ=90° giving [01−10] since cos(90°)=0 and sin(90°)=1), REFLECTION across x-axis = [100−1] (keeps x same, negates y), REFLECTION across y-axis = [−1001] (negates x, keeps y same), SCALING by factor k = [k00k] (multiplies both coordinates by k, enlarges by factor k). COMPOSITIONS of transformations: multiply matrices in reverse order (rightmost applied first)—to rotate then scale, compute (scaling matrix)·(rotation matrix). The resulting product matrix represents the combined transformation in one step! The matrix A=[2001] transforms (x,y) to (2x,y), doubling the x-coordinate while leaving y unchanged. Choice B correctly describes this non-uniform scaling effect by analyzing the diagonal entries. A distractor like choice D might confuse it with uniform scaling, which would require 2 on both diagonals. Matrix multiplication for transformations: Given transformation matrix [acbd] and point (x,y): (1) Write point as column vector [xy]. (2) Multiply: first row of matrix times vector gives x'-coordinate = a⋅x+b⋅y. Second row times vector gives y'-coordinate = c⋅x+d⋅y. (3) Result is transformed point (x′,y′)=(ax+by,cx+dy). Example: [01−10] applied to (5,3): x' = 0⋅5+(−1)⋅3=−3, y' = 1⋅5+0⋅3=5, so image is (−3,5). That's a 90° counterclockwise rotation! Identifying transformations from matrices: ROTATION matrices have form [cos(θ)sin(θ)−sin(θ)cos(θ)]—look for this pattern with cos and -sin in first row, sin and cos in second row. Common: [01−10] is 90° rotation, [−100−1] is 180° rotation. REFLECTION matrices have form [±100±1] with exactly one negative—[100−1] reflects across x-axis (y negated), [−1001] reflects across y-axis (x negated). SCALING matrices have equal diagonal entries [k00k]—both coordinates multiplied by same k, or different entries [a00b] for non-uniform scaling. Pattern recognition allows identification without calculation! Checking: after transforming point, verify result makes sense geometrically (rotation should preserve distance from origin, reflection should mirror across axis, scaling should change distances proportionally). You're building strong skills in matrix identification! Question 19
A point P(4,3) is transformed by the matrix T=(01−10). What are the coordinates of the image point P′ after applying T (using (x′y′)=T(xy))?
- (−4,−3)
- (3,−4)
- (−3,4) (correct answer)
- (4,−3)
Explanation: This question tests your ability to use 2×2 matrices to represent and perform plane transformations (rotations, reflections, scaling) by multiplying transformation matrices with point coordinate vectors. A 2×2 matrix can represent a linear transformation of the plane: to transform a point (x, y), write it as column vector (xy) and multiply by transformation matrix T = (acbd) using matrix multiplication: T(xy)=(acbd)(xy)=(ax+bycx+dy)=(x′y′) where (x', y') is the transformed point. Common transformation matrices include: ROTATION by angle θ counterclockwise = (cos(θ)sin(θ)−sin(θ)cos(θ)) (example: 90° rotation uses θ=90° giving (01−10) since cos(90°)=0 and sin(90°)=1), REFLECTION across x-axis = (100−1) (keeps x same, negates y), REFLECTION across y-axis = (−1001) (negates x, keeps y same), SCALING by factor k = (k00k) (multiplies both coordinates by k, enlarges by factor k). For point P(4,3) and T=(01−10), compute P' = (0×4+(−1)×31×4+0×3)=(−34), so (-3,4). Choice C correctly applies the matrix multiplication to get (-3,4), matching the 90° counterclockwise rotation that swaps and signs coordinates appropriately. A common distractor like choice A might result from swapping signs incorrectly or misapplying the matrix rows, leading to (-4,-3) instead. Keep practicing matrix multiplication for transformations: always multiply the matrix by the column vector, and verify by checking if the result aligns with the geometric effect, like preserving distance for rotations—you've got this! Question 20
First rotate a point 90∘ counterclockwise about the origin, then scale by a factor of 2.
Let
R=(01−10),S=(2002).
What single matrix represents the combined transformation (apply R first, then S)?
- (02−20) (correct answer)
- (01−10)
- (02−10)
- (01−20)
Explanation: This question tests your ability to use 2×2 matrices to represent and perform plane transformations (rotations, reflections, scaling) by multiplying transformation matrices with point coordinate vectors. A 2×2 matrix can represent a linear transformation of the plane: to transform a point (x,y), write it as column vector (xy) and multiply by transformation matrix T=(acbd) using matrix multiplication: T(xy)=(acbd)(xy)=(ax+bycx+dy)=(x′y′) where (x′,y′) is the transformed point. Common transformation matrices include: ROTATION by angle θ counterclockwise = (cos(θ)sin(θ)−sin(θ)cos(θ)) (example: 90° rotation uses θ=90∘ giving (01−10) since cos(90∘)=0 and sin(90∘)=1), REFLECTION across x-axis = (100−1) (keeps x same, negates y), REFLECTION across y-axis = (−1001) (negates x, keeps y same), SCALING by factor k = (k00k) (multiplies both coordinates by k, enlarges by factor k). COMPOSITIONS of transformations: multiply matrices in reverse order (rightmost applied first)—to rotate then scale, compute (scaling matrix)·(rotation matrix) = S∗R=(2002)∗(01−10)=(02−20). Choice A correctly computes this combined matrix for rotation first then scaling. Distractors like choice B might ignore the composition and just give the rotation matrix. Remember to multiply in the order of application (second times first)—practice with test points to verify, and you'll be a pro!