I have a question regarding linear algebra and some change of basis. I have 4 matrices A, P, Q and B that represent $f: F^3 -> F^2$, with basis $(u_1,u_2,u_3)$ for the domain and the basis $(v_1,v_2)$ for the co-domain. I have to show the connection between A, P, Q and B.
Consider the linear transformation $f:F^3\rightarrow F^2$ given by: $$ f\begin{bmatrix}x_1\\x_2\\x_3\end{bmatrix}=\begin{bmatrix}x_1+2x_2+3x_3\\-x_1+x_2-x_3\end{bmatrix} $$ Where a basis for $F^3$ is $$ u_1=\begin{bmatrix}-1\\1\\-2\end{bmatrix}\quad u_2=\begin{bmatrix}3\\-1\\1\end{bmatrix}\quad u_3=\begin{bmatrix}-1\\0\\1\end{bmatrix} $$ and the basis for $F^2$ is $$ v_1=\begin{bmatrix}4\\3\end{bmatrix}\quad v_2=\begin{bmatrix}5\\4\end{bmatrix}. $$ using the matrices $$ A=\begin{bmatrix}1&2&3\\-1&1&-1\end{bmatrix}\quad P=\begin{bmatrix}-1&3&-1\\1&-1&0\\-2&1&1\end{bmatrix}\quad Q=\begin{bmatrix}4&5\\3&4\end{bmatrix} $$
Editor's note: The $-1$ in the first column and second row of $P$ should likely be $1$, so that the first column is $u_1$, but this formulation matches the data in the OP's link.
This is what I have done so far:
We know that $M_fx = f(x)$, where $M_f$ is expressed in domain K, and the co-domain is expressed in the K'. x is expressed in basis K, and $f(x)$ is expressed in basis K'.
Besides: if x in basis K= x' in basis K', then x=Qx'
we also know that $Bx = f(x)$, where $(u_1, u_2,u_3)$ is the basis for $F^3$ and $(v_1,v_2)$ is the basis for $F^2$. and if $x' = P^{-1}$, then $Bx'=BP^{-1}x = f(x)$ $->$ $BP^{-1}x = f(x) = Q^{-1} * f(x)= Q^{-1}Ax$ $-> BP^{-1}x = Q^{-1}Ax -> B = Q^{-1}AP$
We will try and test if it's true: First we find $Q^{-1}$:
$$ Q^{-1}= 1/(16-15) * {\begin{bmatrix}4&-3\\-5&4\end{bmatrix}}^t = \begin{bmatrix}4&-3\\-5&4\end{bmatrix} $$ Then we plug it into the formula for the change of basis: $$B=Q^{-1}AP: \begin{bmatrix}4&-3\\-5&4\end{bmatrix}. \begin{bmatrix}1&2&3\\-1&1&-1\end{bmatrix}\quad.\begin{bmatrix}-1&3&-1\\-1&-1&0\\-2&1&1\end{bmatrix}\quad = \begin{bmatrix}-40&41&8\\31&-32&-6\end{bmatrix}\quad $$
so our matrix is $$B= \begin{bmatrix}-40&41&8\\31&-32&-6\end{bmatrix}\quad$$