Combining and inverting transform matrices

By Martin McBride, 2024-05-18
Tags: matrix matrix algebra transformation inverse matrix
Categories: matrices


We previously looked at using matrices to represent transformations in 2 dimensions. As we will see here, we can apply compound transformations (such as scale and rotate) by applying several matrices. We can also calculate the inverse of a transform simply by inverting the matrix.

This in turn allows us to switch between different frames of reference to define transformations, for example, to allow us to rotate a shape about its own centre. We can also use matrix algebra to represent a combination of transformations as a single matrix, which means the transformations can be applied very efficiently.

Using 3 by 3 matrices

In the earlier article on transformations, we introduced the idea of using a 3 by 3 matrix, which allows us to represent translation via matrix multiplication:

3 by 3 matrix

The values a to d represent the values in a normal 2 by 2 matrix, u and v represent the x and y translation, and the bottom row is always (0, 0, 1).

This matrix needs a 3-vector to operate on. This is formed by adding an extra element, which is always 1, to the normal (x, y) vector:

3 by 3 matrix

In this article, since we are dealing with general, combined, transform matrices, we will always use the 3 by 3 form, even when u and v happen to be 0.

Scaling and rotation transformations

Here is a simple scaling transformation. We looked at this in the previous article. It scales the shape by a factor of 2:

Scale

This is the scaling matrix. Again we looked at this in the previous article, but this time we have expressed it as a 3 by 3 matrix:

Scale

This is the result of applying the scaling matrix to a vector (x, y). Notice that the resulting vector still has a 1 and its third element, which we ignore when looking at the 2-dimensional result:

Scale

Here is a simple rotation transformation. It rotates through an angle θ, counterclockwise. In this case, θ is 60°:

Rotation

This is the rotation matrix:

Rotation

This is the result of applying the rotation matrix to a vector (x, y):

Rotation

Combining the two transformations

If we scale and rotate the shape, we get this:

Scale and rotation

One way to calculate this is to first scale the vector, and then rotate it. We already know the scaled vector:

Scale and rotation

If we apply the rotation matrix to this scaled vector we get the rotated, scaled vector:

Scale and rotation

This is a perfectly valid way to calculate the transformation, but it is possible to reduce this to a single matrix multiplication, and this can often have advantages as we will see below.

To start with, we can write this process symbolically:

Scale and rotation

Here V is the original vector, S is the scaling matrix, and R is the rotation matrix. We have calculated the transformed vector VT using matrix multiplication in the order implied by the brackets.

But remember that matrix multiplication is associative - that is to say, we can perform the multiplications in any order. So we can do this:

Scale and rotation

This means that we can first multiply the transformation matrices together to obtain a combined matrix that applies both transformations in one step:

Scale and rotation

Why does this matter? Well in some applications, such as computer graphics, we might want to apply the same transformation to many thousands of points. For animated graphics (such as games) we might want to do that many times per second. Using the first method, we must perform two matrix multiplications on each point. Using the second method we just need to calculate the compound matrix once, and then we only have to perform one matrix multiplication on each point.

Here is the result of multiplying the original vector by the compound matrix, to verify that it gives the same result as before:

Scale and rotation

Inverting a transform

The inverse of a transform has the opposite effect of the transform. Put another way, the inverse of a transform undoes the effect of that transform.

For simple transforms, we can easily work out the inverse matrix. For example, we saw earlier that this matrix scales by a factor s:

Scale

If we have scaled a shape by a factor of s, what do we need to do to undo that scaling? Well of course, we need to scale it again by a factor of 1/s and the resulting shape will be back to its original size. The matrix for scaling by a factor of 1/s can be found by simply substituting 1/s for s in the previous scaling matrix:

Scale

As another example, take the rotation matrix from before:

Rotate

This transform rotates the shape by angle θ, counterclockwise. How do we undo such a transform? We simply need to rotate clockwise by θ, or (equivalently) we need to rotate counterclockwise by -θ:

Rotate

The matrix on the right has been simplified using the symmetric properties on the sine and cosine of a negative angle - sine of minus theta equals minus sine theta, and cosine of minus theta equals cosine theta.

The inverse transform is the inverse matrix

From the discussion above, if we apply a transform matrix A, followed by its inverse transform B, then B undoes the effect of A. So we can say that the net effect of the product of these two matrices is to leave the shape unchanged. This means that BA must equal the unit matrix, since any other matrix would alter the shape in some way:

Inverse matrix

This in turn means that B must be the inverse matrix of A

Inverse matrix

This is quite a nice result. Firstly it shows that a matrix is a very natural way to represent a transform. Secondly, from a practical point of view, it gives us a process to find the inverse of any reversible transform. Note that some transforms cannot be reversed, and we will see that the matrix representation gives us a way to detect that too.

The linked article on inverse matrices shows the general formula for calculating the inverse of a matrix. However, when it comes to transform matrices remember that the matrix is somewhat simplified because the third line is always 0, 0, 1:

3 by 3 matrix

We can find the inverse of this matrix using the standard formula from the article mentioned above. The calculation is quite long and tedious, but not particularly complicated, so we will skip it here and jump straight to the result:

Inverse matrix

To take the example of a scaling matrix:

Scale

We have:

Inverse matrix

And since u and v are zero we have:

Inverse matrix

If we substitute these values into the general equation we get:

Inverse matrix

As expected, this is the same as the inverse scaling transform that we calculated earlier.

Irreversible transformations

Suppose we used the zero matrix (a matrix filled entirely with zeros) as a transform. This would map every point in space onto the origin, (0, 0). If we then attempted to reverse this transform, it wouldn't work, because every point in the transformed shape would be (0, 0) so it would be impossible to map each point back to where it came from.

This doesn't just happen for the zero transform. If we transform using any matrix that doesn't have an inverse, then we can't reverse it. In general, a transform is irreversible if its determinant is zero.

However, in the special case of a 2-dimensional transform, the determinant will be 0 if a.d equals b.c. In that case, the denominator in the inverse matrix above will be zero, so it will be impossible to calculate an inverse matrix.

Changing the frame of reference

What if we wanted to rotate this shape about its centre? Like this:

Frame of referernce

How might we do that? Well, we know how to translate the original shape (in grey) so that it is centred on the origin:

Frame of referernce

Here is the transform matrix (notice that we move the shape by an extra 0.5 so that it is centred on the origin):

Frame of referernce

We can then rotate the shape about the origin by 60°:

Frame of referernce

Here is the transform matrix, with its approximate numerical value:

Frame of referernce

Finally, we translate the shape back so that its centre is back to its original position:

Frame of referernce

This is done by applying the inverse of the previous translation. The result is the shape rotated about its centre:

Frame of referernce

If we combine the three transforms we get a single transform that rotates the square about its centre:

Frame of referernce

Alternative view of change of frame of reference

There is yet another way to view this transform, which is also quite interesting. The final matrix given above can be viewed as a rotation by 60° about the origin, followed by a translation by (3.915, -1.781).

First here is the rotation. Since we are rotating about the origin, the square is rotated by 60°, but in addition, it is moved to a completely different place:

Frame of referernce

Now if we translate the square by (3.915, -1.781), then it moves back to its original position (its centre is in exactly the same place as the original square) but still rotated by 60°:

Frame of referernce

See also



Join the GraphicMaths Newletter

Sign up using this form to receive an email when new content is added:

Popular tags

adder adjacency matrix alu and gate angle area argand diagram binary maths cartesian equation chain rule chord circle cofactor combinations complex modulus complex polygon complex power complex root cosh cosine cosine rule cpu cube decagon demorgans law derivative determinant diagonal directrix dodecagon eigenvalue eigenvector ellipse equilateral triangle eulers formula exponent exponential exterior angle first principles flip-flop focus gabriels horn gradient graph hendecagon heptagon hexagon horizontal hyperbola hyperbolic function hyperbolic functions infinity integration by parts integration by substitution interior angle inverse hyperbolic function inverse matrix irregular polygon isosceles trapezium isosceles triangle kite koch curve l system line integral locus maclaurin series major axis matrix matrix algebra mean minor axis nand gate newton raphson method nonagon nor gate normal normal distribution not gate octagon or gate parabola parallelogram parametric equation pentagon perimeter permutations polar coordinates polynomial power probability probability distribution product rule pythagoras proof quadrilateral radians radius rectangle regular polygon rhombus root set set-reset flip-flop sine sine rule sinh sloping lines solving equations solving triangles square standard curves standard deviation star polygon statistics straight line graphs surface of revolution symmetry tangent tanh transformation transformations trapezium triangle turtle graphics variance vertical volume of revolution xnor gate xor gate