zuai-logo
zuai-logo
  1. AP Pre Calculus
FlashcardFlashcard
Study GuideStudy GuideQuestion BankQuestion BankGlossaryGlossary

What is the general form of a 2D transformation matrix?

[a11a12a21a22]\begin{bmatrix} a_{11} & a_{12} \\ a_{21} & a_{22} \end{bmatrix}[a11​a21​​a12​a22​​]

Flip to see [answer/question]
Flip to see [answer/question]
Revise later
SpaceTo flip
If confident

All Flashcards

What is the general form of a 2D transformation matrix?

[a11a12a21a22]\begin{bmatrix} a_{11} & a_{12} \\ a_{21} & a_{22} \end{bmatrix}[a11​a21​​a12​a22​​]

What is the formula for a counterclockwise rotation matrix by angle θ?

[cos(θ)−sin(θ)sin(θ)cos(θ)]\begin{bmatrix} cos(θ) & -sin(θ) \\ sin(θ) & cos(θ) \end{bmatrix}[cos(θ)sin(θ)​−sin(θ)cos(θ)​]

What are the transformation equations for a counterclockwise rotation by angle θ?

x′=xcos(θ)−ysin(θ)x' = xcos(θ) - ysin(θ)x′=xcos(θ)−ysin(θ) , y′=xsin(θ)+ycos(θ)y' = xsin(θ) + ycos(θ)y′=xsin(θ)+ycos(θ)

What is the formula for a clockwise rotation matrix by angle θ?

[cos(−θ)−sin(−θ)sin(−θ)cos(−θ)]\begin{bmatrix} cos(-θ) & -sin(-θ) \\ sin(-θ) & cos(-θ) \end{bmatrix}[cos(−θ)sin(−θ)​−sin(−θ)cos(−θ)​]

What is the formula for the determinant of a 2x2 matrix?

For matrix [abcd]\begin{bmatrix} a & b \\ c & d \end{bmatrix}[ac​bd​], the determinant is ad−bcad - bcad−bc.

If matrix A represents transformation f and matrix B represents transformation g, what matrix represents the composition g(f(x))?

AB

If a linear transformation L is given by L(v) = Av, what is its inverse L⁻¹?

L⁻¹(v) = A⁻¹v

What is the matrix for reflection over the y-axis?

[−1001]\begin{bmatrix} -1 & 0 \\ 0 & 1 \end{bmatrix}[−10​01​]

What is the matrix for reflection over the x-axis?

[100−1]\begin{bmatrix} 1 & 0 \\ 0 & -1 \end{bmatrix}[10​0−1​]

What is the formula for scaling by a factor of k in both x and y directions?

[k00k]\begin{bmatrix} k & 0 \\ 0 & k \end{bmatrix}[k0​0k​]

How do you find the transformation matrix given the transformation of standard basis vectors?

  1. Determine where <1, 0> and <0, 1> are mapped. 2. Place the transformed <1, 0> as the first column and the transformed <0, 1> as the second column of the matrix.

How do you rotate a vector by a given angle using a matrix?

  1. Determine the angle of rotation. 2. Construct the rotation matrix. 3. Multiply the rotation matrix by the vector.

How do you find the area of a region after a linear transformation?

  1. Find the determinant of the transformation matrix. 2. Take the absolute value of the determinant. 3. Multiply the original area by the absolute value of the determinant.

How do you determine the matrix for a composite transformation?

  1. Find the matrices for each individual transformation. 2. Multiply the matrices in the correct order (right to left).

How do you determine if a matrix has an inverse?

  1. Calculate the determinant of the matrix. 2. If the determinant is non-zero, the matrix has an inverse.

How do you apply a composite transformation to a vector?

  1. Find the composite transformation matrix. 2. Multiply the composite matrix by the vector.

How do you find the matrix for a reflection over the x-axis followed by a rotation of 45 degrees?

  1. Find the matrix for reflection over the x-axis. 2. Find the matrix for a 45-degree rotation. 3. Multiply the rotation matrix by the reflection matrix.

How do you find the inverse of a 2x2 matrix?

  1. Calculate the determinant (ad-bc). 2. Swap 'a' and 'd', negate 'b' and 'c'. 3. Divide each element by the determinant.

How do you find the matrix that scales x by 2 and y by 3?

  1. Create a diagonal matrix. 2. Put 2 in the top-left entry and 3 in the bottom-right entry. 3. The matrix is [2003]\begin{bmatrix} 2 & 0 \\ 0 & 3 \end{bmatrix}[20​03​].

How do you verify that two matrices are inverses of each other?

  1. Multiply the two matrices together. 2. If the result is the identity matrix, then they are inverses.

Explain how unit vectors are used to construct transformation matrices.

The transformed images of the standard basis vectors (unit vectors) become the columns of the transformation matrix.

What does the determinant of a transformation matrix tell you?

The absolute value of the determinant indicates the scaling factor of the area under the transformation. The sign indicates orientation (reflection).

Explain the concept of composing two linear transformations.

It involves applying one transformation after another. The matrix of the composition is the product of the individual transformation matrices.

What does it mean for a transformation to have an inverse?

It means there exists another transformation that 'undoes' the original transformation, mapping the output back to the original input.

Why is the order of matrix multiplication important in compositions?

Matrix multiplication is not commutative; therefore, the order in which transformations are applied matters. AB is not necessarily equal to BA.

Explain the geometric meaning of a negative determinant.

A negative determinant indicates that the transformation includes a reflection (flip) in addition to any possible dilation.

How do you find the matrix that represents a reflection over the y-axis?

The matrix is [−1001]\begin{bmatrix} -1 & 0 \\ 0 & 1 \end{bmatrix}[−10​01​] because it maps (1,0) to (-1,0) and (0,1) to (0,1).

How does the determinant relate to the area of a shape after a linear transformation?

The absolute value of the determinant gives the factor by which the area of any shape is scaled after the transformation.

Explain why not all matrices have an inverse.

A matrix has an inverse if and only if its determinant is non-zero. A zero determinant indicates that the transformation collapses space, making it impossible to 'undo'.

Describe the relationship between a matrix and its inverse.

The inverse of a matrix, when multiplied by the original matrix, results in the identity matrix. This represents 'undoing' the transformation.