Matrices as Functions

Help Questions

AP Precalculus › Matrices as Functions

Questions 1 - 10
1

Using the matrix provided, which operation will result in the identity matrix when applied to $\mathbf{A}=\begin{pmatrix}2&0\0&\tfrac12\end{pmatrix}$?

Transpose $\mathbf{A}$ to get $\mathbf{A}^T$.

Add $\mathbf{I}=\begin{pmatrix}1&0\0&1\end{pmatrix}$ to $\mathbf{A}$.

Multiply $\mathbf{A}$ by scalar $2$.

Multiply by $\mathbf{A}^{-1}=\begin{pmatrix}\tfrac12&0\0&2\end{pmatrix}$.

Explanation

This question tests AP Precalculus understanding of matrices as functions, specifically focusing on inverse matrices and the identity matrix. The given matrix A = [[2,0],[0,1/2]] is diagonal, and its inverse is found by taking the reciprocal of each diagonal entry, giving A^(-1) = [[1/2,0],[0,2]]. When we multiply AA^(-1), we get the identity matrix I = [[1,0],[0,1]]. Choice A is correct because multiplying A by its inverse A^(-1) = [[1/2,0],[0,2]] yields the identity matrix. Choice B is incorrect as adding the identity matrix to A would give [[3,0],[0,3/2]], not the identity matrix, showing confusion between matrix operations. To help students: Practice finding inverses of diagonal matrices and verify results by multiplication. Watch for: Confusion between different matrix operations and misunderstanding what produces the identity matrix.

2

Based on the information above, how does matrix multiplication affect $\mathbf{v}$ if $\mathbf{A}=\begin{pmatrix}3&0\0&1\end{pmatrix}$ and $\mathbf{v}=\begin{pmatrix}2\-4\end{pmatrix}$?

$\mathbf{A}\mathbf{v}=\begin{pmatrix}6\-4\end{pmatrix}$, a horizontal stretch by factor $3$.

$\mathbf{A}\mathbf{v}=\begin{pmatrix}2\-1\end{pmatrix}$, a vertical shrink by factor $4$.

$\mathbf{A}\mathbf{v}=\begin{pmatrix}5\-4\end{pmatrix}$, a translation right by $3$.

$\mathbf{A}\mathbf{v}=\begin{pmatrix}6\-12\end{pmatrix}$, a uniform scale by factor $3$.

Explanation

This question tests AP Precalculus understanding of matrices as functions, specifically focusing on diagonal matrices and their geometric effects. The matrix A = [[3,0],[0,1]] scales the x-coordinate by 3 while leaving the y-coordinate unchanged, representing a horizontal stretch. When we multiply Av where v = [[2],[-4]], we get: first component = (3)(2) + (0)(-4) = 6, second component = (0)(2) + (1)(-4) = -4, resulting in [[6],[-4]]. Choice A is correct because it accurately computes Av = [[6],[-4]] and correctly identifies this as a horizontal stretch by factor 3. Choice C is incorrect as it miscalculates the y-component as -12 instead of -4, suggesting the student applied the x-scaling factor to both components. To help students: Visualize diagonal matrices as independent scaling of each axis and practice component-wise multiplication. Watch for: Students applying one scaling factor to all components instead of recognizing independent axis scaling.

3

Using the matrix provided, how does matrix multiplication affect $\mathbf{v}$ if $\mathbf{A}=\begin{pmatrix}1&2\0&1\end{pmatrix}$ and $\mathbf{v}=\begin{pmatrix}1\3\end{pmatrix}$?​

$\mathbf{A}\mathbf{v}=\begin{pmatrix}7\3\end{pmatrix}$, found by row-by-column multiplication.

$\mathbf{A}\mathbf{v}=\begin{pmatrix}7\1\end{pmatrix}$, found by multiplying entries directly.

$\mathbf{A}\mathbf{v}=\begin{pmatrix}3\7\end{pmatrix}$, found by swapping coordinates.

$\mathbf{A}\mathbf{v}=\begin{pmatrix}1\5\end{pmatrix}$, found by adding vectors.

Explanation

This question tests AP Precalculus understanding of matrices as functions, specifically focusing on matrix-vector multiplication using row-by-column method. For the matrix A = [[1,2],[0,1]] and vector v = [[1],[3]], we multiply: first row gives (1)(1) + (2)(3) = 1 + 6 = 7, second row gives (0)(1) + (1)(3) = 0 + 3 = 3, resulting in Av = [[7],[3]]. Choice B is correct because it accurately computes the matrix-vector product using proper row-by-column multiplication. Choice A is incorrect as it suggests adding vectors, showing fundamental misunderstanding of matrix multiplication - simply adding [[1,2]] and [[1,3]] component-wise would give [[2,5]], not [[1,5]]. To help students: Emphasize the row-by-column multiplication process systematically, working through each component calculation step by step. Watch for: Confusion between matrix addition and multiplication, and errors in applying the multiplication algorithm.

4

Using the matrix provided, determine $\det(\mathbf{A})$ for $\mathbf{A}=\begin{pmatrix}2&1\3&4\end{pmatrix}$ and interpret its significance for area scaling.

$\det(\mathbf{A})=11$, so areas scale by a factor of $11$.

$\det(\mathbf{A})=6$, so areas scale by a factor of $6$.

$\det(\mathbf{A})=5$, so areas scale by a factor of $5$.

$\det(\mathbf{A})=-5$, so areas scale by a factor of $-5$.

Explanation

This question tests AP Precalculus understanding of matrices as functions, specifically focusing on determinant calculation and its geometric interpretation. The determinant of a 2×2 matrix represents how the matrix transformation scales areas, with the formula det(A) = ad - bc for matrix [[a,b],[c,d]]. For the given matrix A = [[2,1],[3,4]], we calculate det(A) = (2)(4) - (1)(3) = 8 - 3 = 5. Choice A is correct because it accurately states that det(A) = 5, meaning areas are scaled by a factor of 5 under this transformation. Choice C is incorrect as it miscalculates the determinant as 11, likely by adding all matrix entries instead of using the proper formula. To help students: Practice the determinant formula systematically and visualize how matrices transform unit squares to understand area scaling. Watch for: Students adding matrix entries or confusing the determinant formula with other matrix operations.

5

Based on the information above, what does the matrix $\mathbf{A}=\begin{pmatrix}1&0\0&-1\end{pmatrix}$ represent in the context of the transformation?​

A $90^\circ$ counterclockwise rotation.

A horizontal stretch by factor $-1$.

A reflection across the $y$-axis.

A reflection across the $x$-axis.

Explanation

This question tests AP Precalculus understanding of matrices as functions, specifically focusing on recognizing standard transformation matrices. The matrix A = [[1,0],[0,-1]] is a diagonal matrix where the x-component remains unchanged (multiplied by 1) while the y-component changes sign (multiplied by -1). This transformation takes any point (x,y) to (x,-y), which is precisely a reflection across the x-axis. Choice A is correct because it accurately identifies this transformation as a reflection across the x-axis. Choice B is incorrect as it would require the matrix [[-1,0],[0,1]], which negates x-coordinates instead of y-coordinates, a common confusion when students mix up axis reflections. To help students: Memorize standard transformation matrices and test them with simple points like (1,0) and (0,1) to verify the transformation. Watch for: Confusion between x-axis and y-axis reflections and misunderstanding which coordinate gets negated.

6

Using the matrix provided, how does matrix multiplication affect $\mathbf{v}$ if $\mathbf{A}=\begin{pmatrix}0&-1\1&0\end{pmatrix}$ and $\mathbf{v}=\begin{pmatrix}3\2\end{pmatrix}$?​

$\mathbf{A}\mathbf{v}=\begin{pmatrix}-3\-2\end{pmatrix}$, a $180^\circ$ rotation.

$\mathbf{A}\mathbf{v}=\begin{pmatrix}2\-3\end{pmatrix}$, a $90^\circ$ clockwise rotation.

$\mathbf{A}\mathbf{v}=\begin{pmatrix}-2\3\end{pmatrix}$, a $90^\circ$ counterclockwise rotation.

$\mathbf{A}\mathbf{v}=\begin{pmatrix}3\-2\end{pmatrix}$, a reflection across the $x$-axis.

Explanation

This question tests AP Precalculus understanding of matrices as functions, specifically focusing on matrix multiplication and recognizing rotation transformations. The matrix A = [[0,-1],[1,0]] represents a 90° counterclockwise rotation transformation in the coordinate plane. When we multiply A by vector v = [[3],[2]], we perform row-by-column multiplication: first row gives (0)(3) + (-1)(2) = -2, second row gives (1)(3) + (0)(2) = 3, resulting in Av = [[-2],[3]]. Choice B is correct because it accurately computes the matrix-vector product and correctly identifies this as a 90° counterclockwise rotation. Choice C is incorrect as it reverses the result coordinates, suggesting a clockwise rotation instead, which is a common error when students confuse the rotation matrix forms. To help students: Practice recognizing standard transformation matrices, especially rotation matrices, and verify results by visualizing the geometric effect. Watch for: Confusion between clockwise and counterclockwise rotations and computational errors in matrix multiplication.

7

Using the matrix provided, determine $\det(\mathbf{A})$ for $\mathbf{A}=\begin{pmatrix}1&2\2&4\end{pmatrix}$ and interpret its significance.

It equals $0$, so the transformation is not invertible and flattens area to zero.

It equals $1$, so the transformation preserves all lengths and angles.

It equals $4$, so the transformation is invertible and quadruples area.

It equals $-4$, so the transformation reverses orientation and quadruples area.

Explanation

This question tests AP Precalculus understanding of matrices as functions, specifically focusing on determinant calculation and recognizing singular matrices. A zero determinant indicates the matrix is not invertible and collapses the plane to a line or point. For the matrix A = [[1,2],[2,4]], the determinant is calculated as (1)(4) - (2)(2) = 4 - 4 = 0. Choice B is correct because a determinant of 0 means the transformation is not invertible and flattens all areas to zero (the rows are linearly dependent). Choice C is incorrect as it claims the determinant is 4, missing that the rows are proportional. To help students: Emphasize that proportional rows always yield zero determinant and geometric collapse. Watch for: Students not recognizing when matrix rows are scalar multiples of each other.

8

Based on the information above, how does matrix multiplication affect $\mathbf{v}$ if $\mathbf{A}=\begin{pmatrix}1&2\0&1\end{pmatrix}$ and $\mathbf{v}=\begin{pmatrix}1\3\end{pmatrix}$?

$\mathbf{A}\mathbf{v}=\begin{pmatrix}7\3\end{pmatrix}$, shearing by adding $2y$ into the $x$-value.

$\mathbf{A}\mathbf{v}=\begin{pmatrix}3\4\end{pmatrix}$, adding vectors component-by-component.

$\mathbf{A}\mathbf{v}=\begin{pmatrix}2\3\end{pmatrix}$, scaling the $x$-value by 2 only.

$\mathbf{A}\mathbf{v}=\begin{pmatrix}1\5\end{pmatrix}$, shearing by adding $2x$ into the $y$-value.

Explanation

This question tests AP Precalculus understanding of matrices as functions, specifically focusing on shear transformations through matrix multiplication. The matrix A = [[1,2],[0,1]] represents a horizontal shear that adds twice the y-coordinate to the x-coordinate. For v = [1,3], the multiplication yields: first row (1×1 + 2×3 = 1 + 6 = 7) and second row (0×1 + 1×3 = 3), giving [7,3]. Choice B is correct because it accurately describes the shearing effect where 2y is added to the x-value while y remains unchanged. Choice C is incorrect as it describes a vertical shear, which would have the form [[1,0],[2,1]]. To help students: Visualize shear transformations as slanting effects that preserve one coordinate while modifying the other. Watch for: Confusion between horizontal and vertical shears and their matrix representations.

9

Based on the information above, what does the matrix $\mathbf{A}=\begin{pmatrix}1&0\0&-1\end{pmatrix}$ represent in the context of the transformation?

A reflection across the $y$-axis, sending $(x,y)$ to $(-x,y)$.

A vertical stretch by factor $-1$, sending $(x,y)$ to $(x,y)$.

A $180^\circ$ rotation, sending $(x,y)$ to $(-x,-y)$.

A reflection across the $x$-axis, sending $(x,y)$ to $(x,-y)$.

Explanation

This question tests AP Precalculus understanding of matrices as functions, specifically focusing on identifying reflection transformations from matrix form. The matrix A = [[1,0],[0,-1]] leaves x-coordinates unchanged while negating y-coordinates. This transformation sends any point (x,y) to (x,-y), which is the definition of reflection across the x-axis. Choice C is correct because the matrix precisely performs this x-axis reflection transformation. Choice A is incorrect as reflection across the y-axis would require the matrix [[-1,0],[0,1]], which negates x-coordinates instead. To help students: Have them apply the matrix to test points like (1,1) to verify the transformation type. Watch for: Confusion between x-axis and y-axis reflections and their corresponding matrices.

10

Based on the information above, determine $\det(\mathbf{A})$ for $\mathbf{A}=\begin{pmatrix}1&2\2&4\end{pmatrix}$ and interpret its significance for invertibility.

$\det(\mathbf{A})=8$, so $\mathbf{A}$ is not invertible.

$\det(\mathbf{A})=2$, so $\mathbf{A}$ is invertible.

$\det(\mathbf{A})=0$, so $\mathbf{A}$ is not invertible.

$\det(\mathbf{A})=-8$, so $\mathbf{A}$ is invertible.

Explanation

This question tests AP Precalculus understanding of matrices as functions, specifically focusing on determinant calculation and its relationship to invertibility. For the matrix A = [[1,2],[2,4]], we calculate det(A) = (1)(4) - (2)(2) = 4 - 4 = 0. A matrix is invertible if and only if its determinant is non-zero, so a determinant of 0 means the matrix is singular (not invertible). Choice A is correct because it accurately states that det(A) = 0, therefore A is not invertible. Choice C is incorrect as it miscalculates the determinant as -8, possibly by reversing the subtraction in the formula, and incorrectly concludes the matrix is invertible. To help students: Emphasize that det(A) = 0 is the key indicator of non-invertibility, and practice recognizing when rows are scalar multiples. Watch for: Sign errors in determinant calculation and confusion about the relationship between determinant values and invertibility.

Page 1 of 3