Find the image of the line under the linear transformation.

5k Views Asked by At

An example in my book states:

A linear transformation $T$ has equations $x'=3x-y$ , $y'=x+y$ . Under $T$, find the image of the line with equation $y=2x-1$.

The solution then starts

We need to write the equation of the image line in terms of $x'$ and $y'$.

They then set the $x'$, $y'$ vector equal to the transformation matrix multiplied by the $x, y$ vector and solve for $x$ and $y$. Which they then plug into the original equation of the line, and once it's in standard form, they switch $x'$ to $x$ and $y'$ to $y$.

Why are they doing this? I understand how to do the whole thing, but I don't understand why. Can we not just plug in the $x'$ into the $x$ and the $y'$ into the $y$. It seems to me like they are actually finding the inverse if they do as they did... What am I missing?

They then use these $x$ and $y$ to find the image of equations of circles, parabolas, etc.

3

There are 3 best solutions below

0
On BEST ANSWER

You can’t simply “plug in the $x'$ into the $x$ and the $y'$ into the $y$.” You need to end up with an equation in the new (transformed) variables $x'$ and $y'$, but replacing $x$ with $3x-y$ doesn’t get you any closer to having that: the new variables still don’t appear anywhere in the expression. Moreover, making these substitutions doesn’t make algebraic sense: you can legitimately plug in values of $x$ and $y$ for these variables, but $x'$ and $y'$ aren’t values of these variables. Instead, you need to invert the transformation so that you have expressions for $x$ and $y$ in terms of $x'$ and $y'$. You can then legitimately substitute those expressions for the variables $x$ and $y$ in the original equation.

This is really no different from what you learned to do in order to translate and/or scale the graph of a function of one variable. E.g., shifting the graph right by $2$ corresponds to adding $2$ to all of the $x$-coordinates of points on the graph, that is, it is accomplished by the transformation $x' = x +2$. However, to obtain the equation of the shifted graph, you had to replace $x$ by $x-2$ (really by $x'-2$), which is the inverse of the transformation. The reasoning is the same: $x$ is replaced by an expression that equals $x$, not by an expression that equals $x'$. Similarly, to scale the graph by a factor of $2$, you had to divide $x$ by $2$, again using the inverse transformation.

4
On

You can do it this way:

$2x’+2y’=8x$ and $3y’-x’=4y$. Use the fact that $4y=8x-4$ is also an equation of the line $y=2x-1$.


Since the question is to find the line image, not the equation of the line image you can also do it this way. Find two points lying on the line $y=2x-1$ e.g $A(0,-1)$ and $B(1,1)$. After that find images of $A’$ of $A$ and $B’$ of $B$. It is easy to compute and obtain $A’(1,-1)$, I let you find $B’$. Now the image of the given line is just the line $(A’B’)$

2
On

It is not quite clear what you mean by "... they switch $x′$ to $x$ and $y′$ to $y$.", as this is nonsensical if the equation is supposed to be given in the new coordinates $x'$ and $y'$.

Also the way seems rather cumbersome. A faster way could be

  • Write down the transformation $\binom{x'}{y'} = \begin{pmatrix}3 & -1 \\ 1 & 1 \end{pmatrix}\binom{x}{y}$
  • Write the line $y=2x-1$ in parametric form: $\binom{x}{y} = \binom{1}{2}t+\binom{0}{-1}$
  • Apply the transformation to the line: $$\binom{x'}{y'} = \begin{pmatrix}3 & -1 \\ 1 & 1 \end{pmatrix}\left( \binom{1}{2}t+\binom{0}{-1}\right) =\binom{1}{3}t+\binom{1}{-1}$$
  • Eliminate $t$ using $x'= t+1 \Rightarrow t = x'-1$ and plug this into $y' =3t-1 \Rightarrow \boxed{y' =3x'-4}$