Question: Let $v_1=(1,2,3)^T$ and $v_2=(3,2,1)^T$. Find a standard matrix for a linear transformation that maps $v_{1}$ to $v_{2}$ and vice versa.
I’m interested in different ways of going about this problem.
I offer one way.
One way: Let $A=[a_1 a_2 a_3]$ with $a_i \in \mathbb{R^3}$. Then this leads to a system with vectors as unknowns,
$$a_1+2a_2+3a_3=v_2$$
$$3a_1+2a_2+a_3=v_1$$
Now we use “augmented form” to make calculations easier, and reduce it to “RREF”, and get our solution.
$$\begin{bmatrix} 1 & 0 & -1 & \frac{v_1-v_2}{2} \\ 0 & 1 & 2 & \frac{3v_2-v_1}{4} \end{bmatrix}$$
For example take Let $a_3=0$, this leads to:
$$A=\begin{bmatrix} -1 & 2 & 0 \\ 0 & 1 & 0 \\ 1 & 0 & 0 \end{bmatrix}$$
Another way is to find $v_3$ such that $\{v_1,v_2,v_3\}$ forms a basis for $\mathbb R^3$ (e.g. $v_3=(1,0,0)^T$). Then one can take $A$ to be $\pmatrix{0&1&0\\1&0&0\\0&0&0}$ under this basis. And then transform $A$ to the standard basis.
Hope this helps.