{{title}}

Examples of transformations

Combining transformations

When we combine transformations (e.g. do a transformation by matrix A followed by a transformation by matrix B), we can represent the combined transformation by multiplying the matrices in reverse:

BA

This is exactly the same as composite function.

Find the single matrix which represents a 90° clockwise rotation followed by a reflection in the line y=x

Linear transformations

We can write a linear transformation either as:

\begin{pmatrix}x\\y\end{pmatrix} \to \begin{pmatrix}...\\...\end{pmatrix}

or as a matrix multiplication:

\begin{pmatrix}a & b\\c & d\end{pmatrix} \begin{pmatrix}x\\y\end{pmatrix} = \begin{pmatrix}ax + by\\cx + dy\end{pmatrix}

Find a matrix to map \begin{pmatrix}x\\y\end{pmatrix} to \begin{pmatrix}2y+x\\3x\end{pmatrix}

Find a matrix to map \begin{pmatrix}x\\y\end{pmatrix} to \begin{pmatrix}2y+x\\3x+y\end{pmatrix}

Find the coordinates of the points (1,1), (3,1), (3,3) and (1,3) after a transformation by matrix \begin{pmatrix}-1 & 2 \\ 2 & 1\end{pmatrix}

Determinant and area scale factor

The determinant of the transformation matrix gives the area scale factor of the transformation.

Determinant of 1 or -1

Transformations which do not change the size of shapes (e.g. rotations and reflections) have a determinant of either 1 or -1.

Singular matrix

A singular matrix has a determinant of 0, which means that it will create an image which has no area. For example:

Self-inverse matrix transformations

With transformations, we can pre-multiply by the inverse of a transformation matrix to reverse the transformation.

You need to do the inverse operations in the opposite order to how you did the transformations originally.

(X)(X)^{-1} = I