What is the formula for the determinant of a 2x2 matrix?
For matrix $\begin{bmatrix} a & b \\ c & d \end{bmatrix}$, the determinant is $ad - 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?
$ \begin{bmatrix} -1 & 0 \\ 0 & 1 \end{bmatrix}$
What is the matrix for reflection over the x-axis?
$ \begin{bmatrix} 1 & 0 \\ 0 & -1 \end{bmatrix}$
What is the formula for scaling by a factor of k in both x and y directions?
$ \begin{bmatrix} k & 0 \\ 0 & k \end{bmatrix}$
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 $\begin{bmatrix} 2 & 0 \\ 0 & 3 \end{bmatrix}$.
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.
What are the differences between rotation and reflection transformations?
What are the differences between dilation with a positive determinant and a negative determinant?
Positive Determinant: Dilation (expansion), no reflection | Negative Determinant: Dilation and reflection.
What are the differences between a transformation and its inverse?
Transformation: Maps input to output | Inverse: Maps output back to the original input, 'undoing' the transformation.
What are the differences between composing f(g(x)) and g(f(x))?
f(g(x)): Apply g first, then f | g(f(x)): Apply f first, then g. Order matters because matrix multiplication is not commutative.
What are the differences between a linear transformation and a non-linear transformation?
Linear Transformation: Preserves lines, origin fixed | Non-Linear Transformation: May curve lines, origin may shift.
What are the differences between scaling and shearing transformations?
Scaling: Changes the size of an object | Shearing: Distorts the shape of an object, shifting points parallel to an axis.
What are the differences between a matrix with a determinant of 1 and a matrix with a determinant of -1?
Determinant of 1: Preserves area and orientation | Determinant of -1: Preserves area but reverses orientation (reflection).
What are the differences between the identity matrix and the zero matrix?
Identity Matrix: Acts as '1' for matrix multiplication, leaves matrix unchanged | Zero Matrix: Acts as '0' for matrix addition, results in zero matrix upon multiplication.
What are the differences between row operations and column operations on a matrix?
Row Operations: Used to solve systems of equations, affect rows | Column Operations: Affect columns, related to linear combinations of column vectors.
What are the differences between orthogonal and non-orthogonal matrices?
Orthogonal Matrices: Columns (and rows) are orthonormal, preserve lengths and angles | Non-Orthogonal Matrices: Do not necessarily preserve lengths and angles.