Matrix Transformations Flashcards
What is the 2x2 identity matrix?
[1 0]
[0 1]
What is the 3x3 identity matrix?
[1 0 0]
[0 1 0]
[0 0 1]
What matrix is for a reflection in the line y = 0?
[1 0]
[0 -1]
What matrix is for a reflection in the line x = 0?
[-1 0]
[0 1]
What matrix is for a reflection in the line y = x?
[0 1]
[1 0]
What matrix is for a reflection in the line y = -x?
[0 -1]
[-1 0]
What matrix is for a rotation of 90° clockwise?
[0 1]
[-1 0]
What matrix is for a rotation of 90° anticlockwise?
[0 -1]
[1 0]
What matrix is for a rotation of 180°?
[-1 0]
[0 -1]
What matrix is for an enlargement with a scale factor of k?
[K 0]
[0 K]
What is the matrix for a stretch with a scale factor of k parallel to the x axis?
[K 0]
[0 1]
What is the matrix for a stretch with a scale factor of k parallel to the y axis?
[1 0]
[0 K]
What is the matrix for a reflection in the x plane?
[-1 0 0]
[0 1 0]
[0 0 1]
What is the matrix for a reflection in the y plane?
[1 0 0]
[0 -1 0]
[0 0 1]
What is the matrix for a reflection in the z plane?
[1 0 0]
[0 1 0]
[0 0 -1]
What is the 3x3 matrix for a rotation of θ° anticlockwise about the x axis?
[1 0 0]
[0 cosθ -sinθ]
[0 sinθ cosθ]
What is the 3x3 matrix for a rotation of θ° anticlockwise about the y axis?
[cosθ 0 sinθ]
[0 1 0]
[-sinθ 0 cosθ]
What is the 3x3 matrix for a rotation of θ° anticlockwise about the z axis?
[cosθ -sinθ 0]
[sinθ cosθ 0]
[0 0 1]