I am a little confused with results that I've got. Please look through my solutions set, questions will be listed at the bottom.
Given:
Basis E $\in$ $\Bbb R$2 $$E= \Bigg \{ \begin{bmatrix}1 \\ 2 \\ \end{bmatrix}, \begin{bmatrix}3 \\ 5 \\ \end{bmatrix} \Bigg\}$$
Linear transformation: L: $\Bbb R$2→ $\Bbb R$2 $$L(x,y) = (2x-y, 3x-2y)$$
We need to find transformation matrix, and it is said that the answer is: $$ \begin{bmatrix} -3 & -8 \\ 1 & 3 \\ \end{bmatrix} $$
Solution:
Step 1: I have applied transformation to each column vector from our basis: $$ L \Bigg (\begin{bmatrix}1 \\ 2 \\ \end{bmatrix} \Bigg) = \begin{bmatrix} 0\\ -1 \\ \end{bmatrix}$$ $$L \Bigg (\begin{bmatrix} 3 \\ 5 \\ \end{bmatrix} \Bigg) = \begin{bmatrix}1 \\ -1 \\ \end{bmatrix}$$
Step 2:
Let:
$$ A = \begin{bmatrix} 1 & 3 \\ 2 & 5 \\ \end{bmatrix}, A^{-1} = \begin{bmatrix} -5 & 3 \\ 2 & -1 \\ \end{bmatrix}, B = \begin{bmatrix} 0 & 1 \\ -1 & -1 \\ \end{bmatrix} $$
Method 1:
$$ LA = B $$ $$ LAA^{-1}=BA^{-1} $$ $$ LI=BA^{-1} $$ $$ L=BA^{-1} $$ $$ L_1 = \begin{bmatrix} 0 & 1 \\ -1 & -1 \\ \end{bmatrix} \begin{bmatrix} -5 & 3 \\ 2 & -1 \\ \end{bmatrix}= \begin{bmatrix} 2 & -1 \\ 3 & -2 \\ \end{bmatrix} $$
Method 2: if I construct an augmented matrix, from matrix A and a matrix of images of transformation of column-vectors from our basis, as its columns (matrix B), and reduce matrix A to the identity matrix: $$ \left[ \begin{array}{cc|cc} 1&3&0&1\\ 2&5&-1&-1 \end{array} \right]\sim \left[ \begin{array}{cc|cc} 1&0&-3&-8\\ 0&1&1&3 \end{array} \right] $$ $$ L_2 =\begin{bmatrix} -3 & -8 \\ 1 & 3 \\ \end{bmatrix} $$
Method 3: Method 3: I have also tried to apply a method from this comment, where the author uses images as rows (not as columns) , but got neither $L_1$ nor $L_2$
Step 3: I suppose, that transformation should work this way $LA=B$ (when I apply it to a column-vector/matrix of column vectors, I should receive my images from Step 1), so: $$L_1A=B$$ $$ \begin{bmatrix} 2 & -1 \\ 3 & -2 \\ \end{bmatrix} \begin{bmatrix} 1 & 3 \\ 2 & 5 \\ \end{bmatrix}= \begin{bmatrix} 0 & 1 \\ -1 & -1 \\ \end{bmatrix}$$
which seems fair enough for me, but I cannot say that about $L_2$ solution: $$L_2A=B$$ $$ \begin{bmatrix} -3 & -8 \\ 1 & 3 \\ \end{bmatrix} \begin{bmatrix} 1 & 3 \\ 2 & 5 \\ \end{bmatrix}= \begin{bmatrix} -19 & -48 \\ 7 & 18 \\ \end{bmatrix}$$
So my questions are:
- Which solution is correct (maybe none of these), and where am I mistaken
- Is it correct to refer to column-vectors as "images"
- Do I understand transformation matrix in a right way when I say that $LA=B$
I understand that I lack understanding, so I'll be glad to receive any help. Thanks.