1

I'm having trouble figuring out how to approach this matrix translation question:

Find the equation of the image line produced by translating all of the points on the line $y = 3x -1$ by the vector $\begin{smallmatrix} 2 \\ 3 \end{smallmatrix}$.

I thought this worked out to be:

$$ \begin{pmatrix} x' \\ y' \end{pmatrix} = \begin{pmatrix} 2 \\ 3 \end{pmatrix}\begin{pmatrix} k \\ 3k -1 \end{pmatrix} $$

But I'm obviously mistaken because you can't multiply a (1x2) matrix by another (1x2) matrix. What am I missing?

hohner
  • 1,049

1 Answers1

1

I am quite sure that what is meant here is the following:

$$\begin{pmatrix} x'\\y'\\\end{pmatrix}=\begin{pmatrix}x\\y\\\end{pmatrix}+\begin{pmatrix}2\\3\\\end{pmatrix} $$ Where $y=3x-1$, so that we have $$\begin{pmatrix} x'\\y'\\\end{pmatrix}=\begin{pmatrix}x\\3x-1\\\end{pmatrix}+\begin{pmatrix}2\\3\\\end{pmatrix}= \begin{pmatrix}x+2\\3x+2\\\end{pmatrix}$$

The point is that 'translating by a vector' just means 'adding a vector', when talking bout some general vector $\begin{pmatrix}x\\y\\\end{pmatrix}$.

Danu
  • 1,772