Review exercise 2.25. Suppose that is a linear transformation from
to itself, and
transforms the point
to the point
. What does the inverse transformation
do to the point
?
Answer: The effect of is to reverse the effect of
. Since
takes the first entry of a vector and makes it the last entry of the resulting vector,
must take the last entry of a vector and make it the first. So applying
to the point
results in a point whose first entry is
.
Next, takes the second entry of a vector, adds to it the first entry, and makes the sum the second entry of the resulting vector. In reversing this
must take the second entry and subtract from it the original first entry. So applying
to the point
results in a point whose second entry is
(since
was the original first entry, as discussed in the previous paragraph).
Finally, takes the third entry of a vector, adds to it the first and second entries, and makes the sum the first entry of the resulting vector . In reversing this
must take the first entry and subtract from it the original first entry and second entry. So applying
to the point
results in a point whose third entry is
. (Recall that
was the original first entry, and
the original second entry.)
The inverse transformation thus transforms the point
into the point
. To confirm this, we apply the transformation
to
resulting in the point
The transformation is thus indeed the inverse of the transformation
.
Note that another way to compute is to take the matrix
corresponding to the transformation
and compute its inverse
.
The linear transformation corresponds to the matrix
so that applying to
gives
We can compute the inverse of using Gauss-Jordan elimination. Start with
Subtract 1 times the first row from the second row:
Subtract 1 times the first row from the third row:
Exchange the second and third rows:
Subtract 1 times the third row from the second row:
Subtract -1 times the third row from the first row:
Subtract -1 times the second row from the first row:
Multiply both the second row and the third row by -1:
We thus have
so that
and
So the linear transformation as defined by
is indeed the inverse of the original transformation
.
NOTE: This continues a series of posts containing worked out exercises from the (out of print) book Linear Algebra and Its Applications, Third Edition by Gilbert Strang.
If you find these posts useful I encourage you to also check out the more current Linear Algebra and Its Applications, Fourth Edition, Dr Strang’s introductory textbook Introduction to Linear Algebra, Fourth Edition
and the accompanying free online course, and Dr Strang’s other books
.